Browse Source

define default wrap width attribute

PHP-GTK3
yggverse 4 months ago
parent
commit
7f1bded9b9
  1. 18
      src/Interface/Model/Gtk/Pango/Markup.php

18
src/Interface/Model/Gtk/Pango/Markup.php

@ -30,15 +30,18 @@ interface Markup
): string; ): string;
public static function h1( public static function h1(
string $value string $value,
int $width = self::WRAP_WIDTH
): string; ): string;
public static function h2( public static function h2(
string $value string $value,
int $width = self::WRAP_WIDTH
): string; ): string;
public static function h3( public static function h3(
string $value string $value,
int $width = self::WRAP_WIDTH
): string; ): string;
public static function link( public static function link(
@ -48,15 +51,18 @@ interface Markup
): string; ): string;
public static function list( public static function list(
string $value string $value,
int $width = self::WRAP_WIDTH
): string; ): string;
public static function quote( public static function quote(
string $value string $value,
int $width = self::WRAP_WIDTH
): string; ): string;
public static function text( public static function text(
string $value string $value,
int $width = self::WRAP_WIDTH
): string; ): string;
public static function pre( public static function pre(

Loading…
Cancel
Save