@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * |
110 | 110 | * @return array|bool|int|null|string |
111 | 111 | */ |
112 | - public static function get(string $name, array|bool|int|string $default = null) |
|
112 | + public static function get(string $name, array | bool | int | string $default = null) |
|
113 | 113 | { |
114 | 114 | return $_SESSION[$name] ?? $default; |
115 | 115 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * |
122 | 122 | * @return array|bool|int|null|string |
123 | 123 | */ |
124 | - public static function pull(string $name): array|bool|int|null|string |
|
124 | + public static function pull(string $name): array | bool | int | null | string |
|
125 | 125 | { |
126 | 126 | $value = self::get($name); |
127 | 127 | self::forget($name); |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | * |
166 | 166 | * @return void |
167 | 167 | */ |
168 | - public static function put(string $name, array|bool|int|null|string $value): void |
|
168 | + public static function put(string $name, array | bool | int | null | string $value): void |
|
169 | 169 | { |
170 | 170 | $_SESSION[$name] = $value; |
171 | 171 | } |
@@ -269,7 +269,7 @@ |
||
269 | 269 | * |
270 | 270 | * @return string |
271 | 271 | */ |
272 | - public static function digits(string|int $n): string |
|
272 | + public static function digits(string | int $n): string |
|
273 | 273 | { |
274 | 274 | return self::$locale->digits((string) $n); |
275 | 275 | } |
@@ -50,7 +50,7 @@ |
||
50 | 50 | // Defaults |
51 | 51 | public const DEFAULT_GENERATIONS = '4'; |
52 | 52 | public const DEFAULT_STYLE = self::CHART_STYLE_TREE; |
53 | - protected const DEFAULT_PARAMETERS = [ |
|
53 | + protected const DEFAULT_PARAMETERS = [ |
|
54 | 54 | 'generations' => self::DEFAULT_GENERATIONS, |
55 | 55 | 'style' => self::DEFAULT_STYLE, |
56 | 56 | ]; |
@@ -58,7 +58,7 @@ |
||
58 | 58 | |
59 | 59 | // Force a ".ged" suffix |
60 | 60 | if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) === 'ged') { |
61 | - $download_filename = substr($filename, 0, -4); |
|
61 | + $download_filename = substr($filename, 0, -4); |
|
62 | 62 | } else { |
63 | 63 | $download_filename = $filename; |
64 | 64 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | public const POLISH = 'polish'; |
44 | 44 | public const LITHUANIAN = 'lithuanian'; |
45 | 45 | public const ICELANDIC = 'icelandic'; |
46 | - public const DEFAULT = ''; |
|
46 | + public const default = ''; |
|
47 | 47 | |
48 | 48 | /** |
49 | 49 | * A list of supported surname traditions and their names. |
@@ -52,7 +52,7 @@ |
||
52 | 52 | $this->register(self::POLISH, new PolishSurnameTradition()); |
53 | 53 | $this->register(self::LITHUANIAN, new LithuanianSurnameTradition()); |
54 | 54 | $this->register(self::ICELANDIC, new IcelandicSurnameTradition()); |
55 | - $this->register(self::DEFAULT, new DefaultSurnameTradition()); |
|
55 | + $this->register(self::default, new DefaultSurnameTradition()); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @return ResponseInterface |
101 | 101 | */ |
102 | - public function response(string|array|object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface |
|
102 | + public function response(string | array | object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface |
|
103 | 103 | { |
104 | 104 | if ($content === '' && $code === StatusCodeInterface::STATUS_OK) { |
105 | 105 | $code = StatusCodeInterface::STATUS_NO_CONTENT; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | if (is_string($content)) { |
109 | 109 | $headers['content-type'] ??= 'text/html; charset=UTF-8'; |
110 | 110 | } else { |
111 | - $content = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE); |
|
111 | + $content = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE); |
|
112 | 112 | $headers['content-type'] ??= 'application/json'; |
113 | 113 | } |
114 | 114 |
@@ -50,13 +50,13 @@ discard block |
||
50 | 50 | class MarkdownFactory implements MarkdownFactoryInterface |
51 | 51 | { |
52 | 52 | // Commonmark uses the self-closing form of this tag, so we do the same for consistency. |
53 | - public const BREAK = '<br />'; |
|
53 | + public const break = '<br />'; |
|
54 | 54 | |
55 | 55 | protected const CONFIG_AUTOLINK = [ |
56 | 56 | 'allow_unsafe_links' => false, |
57 | 57 | 'html_input' => HtmlFilter::ESCAPE, |
58 | 58 | 'renderer' => [ |
59 | - 'soft_break' => self::BREAK, |
|
59 | + 'soft_break' => self::break, |
|
60 | 60 | ], |
61 | 61 | ]; |
62 | 62 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'allow_unsafe_links' => false, |
65 | 65 | 'html_input' => HtmlFilter::ESCAPE, |
66 | 66 | 'renderer' => [ |
67 | - 'soft_break' => self::BREAK, |
|
67 | + 'soft_break' => self::break, |
|
68 | 68 | ], |
69 | 69 | 'table' => [ |
70 | 70 | 'wrap' => [ |
@@ -114,24 +114,24 @@ |
||
114 | 114 | public static function firstLineOfTextFromHtml(string $html): string |
115 | 115 | { |
116 | 116 | $html = strtr($html, [ |
117 | - '</blockquote>' => MarkdownFactory::BREAK, |
|
118 | - '</h1>' => MarkdownFactory::BREAK, |
|
119 | - '</h2>' => MarkdownFactory::BREAK, |
|
120 | - '</h3>' => MarkdownFactory::BREAK, |
|
121 | - '</h4>' => MarkdownFactory::BREAK, |
|
122 | - '</h5>' => MarkdownFactory::BREAK, |
|
123 | - '</h6>' => MarkdownFactory::BREAK, |
|
124 | - '</li>' => MarkdownFactory::BREAK, |
|
125 | - '</p>' => MarkdownFactory::BREAK, |
|
126 | - '</pre>' => MarkdownFactory::BREAK, |
|
117 | + '</blockquote>' => MarkdownFactory::break, |
|
118 | + '</h1>' => MarkdownFactory::break, |
|
119 | + '</h2>' => MarkdownFactory::break, |
|
120 | + '</h3>' => MarkdownFactory::break, |
|
121 | + '</h4>' => MarkdownFactory::break, |
|
122 | + '</h5>' => MarkdownFactory::break, |
|
123 | + '</h6>' => MarkdownFactory::break, |
|
124 | + '</li>' => MarkdownFactory::break, |
|
125 | + '</p>' => MarkdownFactory::break, |
|
126 | + '</pre>' => MarkdownFactory::break, |
|
127 | 127 | '</td>' => ' ', |
128 | 128 | '</th>' => ' ', |
129 | - '<hr>' => MarkdownFactory::BREAK, |
|
129 | + '<hr>' => MarkdownFactory::break, |
|
130 | 130 | ]); |
131 | 131 | |
132 | 132 | $html = strip_tags($html, ['br']); |
133 | 133 | |
134 | - [$first] = explode(MarkdownFactory::BREAK, $html, 2); |
|
134 | + [$first] = explode(MarkdownFactory::break, $html, 2); |
|
135 | 135 | |
136 | 136 | return htmlspecialchars_decode($first, ENT_QUOTES); |
137 | 137 | } |