@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | { |
147 | 147 | $default_events = implode(',', self::DEFAULT_EVENTS); |
148 | 148 | |
149 | - $days = (int)$this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS); |
|
150 | - $filter = (bool)$this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER); |
|
149 | + $days = (int) $this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS); |
|
150 | + $filter = (bool) $this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER); |
|
151 | 151 | $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', self::DEFAULT_STYLE); |
152 | 152 | $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', self::DEFAULT_SORT); |
153 | 153 | $events = $this->getBlockSetting($block_id, 'events', $default_events); |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | $sort_style = Validator::parsedBody($request)->isInArrayKeys($this->sortStyles())->string('sortStyle'); |
257 | 257 | $events = Validator::parsedBody($request)->array('events'); |
258 | 258 | |
259 | - $this->setBlockSetting($block_id, 'days', (string)$days); |
|
260 | - $this->setBlockSetting($block_id, 'filter', (string)$filter); |
|
259 | + $this->setBlockSetting($block_id, 'days', (string) $days); |
|
260 | + $this->setBlockSetting($block_id, 'filter', (string) $filter); |
|
261 | 261 | $this->setBlockSetting($block_id, 'infoStyle', $info_style); |
262 | 262 | $this->setBlockSetting($block_id, 'sortStyle', $sort_style); |
263 | 263 | $this->setBlockSetting($block_id, 'events', implode(',', $events)); |
@@ -228,7 +228,7 @@ |
||
228 | 228 | 'style' => Validator::parsedBody($request)->isInArrayKeys($this->styles())->integer('style'), |
229 | 229 | 'width' => Validator::parsedBody($request)->isBetween(self::MINIMUM_WIDTH, self::MAXIMUM_WIDTH)->integer('width'), |
230 | 230 | 'xref' => Validator::parsedBody($request)->isXref()->string('xref'), |
231 | - ])); |
|
231 | + ])); |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | Auth::checkComponentAccess($this, ModuleChartInterface::class, $tree, $user); |
@@ -144,8 +144,7 @@ |
||
144 | 144 | } |
145 | 145 | return $genitive( |
146 | 146 | $sex === 'F' ? |
147 | - 'cousine du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré' : |
|
148 | - 'cousin du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré', |
|
147 | + 'cousine du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré' : 'cousin du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré', |
|
149 | 148 | $sex === 'F' ? 'de la ' : 'du ' |
150 | 149 | ); |
151 | 150 | }; |
@@ -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 | /** |
@@ -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' => [ |