@@ -126,7 +126,7 @@ |
||
126 | 126 | } else { |
127 | 127 | $match = []; |
128 | 128 | if (preg_match('/NOW([+\-]\d+)/', $attrs['default'], $match) > 0) { |
129 | - $date = Registry::timestampFactory()->now()->addDays((int)$match[1]); |
|
129 | + $date = Registry::timestampFactory()->now()->addDays((int) $match[1]); |
|
130 | 130 | $this->input['default'] = strtoupper($date->format('d M Y')); |
131 | 131 | } else { |
132 | 132 | $this->input['default'] = $attrs['default']; |
@@ -154,7 +154,7 @@ |
||
154 | 154 | { |
155 | 155 | $tree = Validator::attributes($request)->treeOptional(); |
156 | 156 | $default = Site::getPreference('DEFAULT_GEDCOM'); |
157 | - $tree ??= $this->tree_service->all()[$default] ?? $this->tree_service->all()->first(); |
|
157 | + $tree ??= $this->tree_service->all()[$default] ?? $this->tree_service->all()->first(); |
|
158 | 158 | |
159 | 159 | $status_code = $exception->getCode(); |
160 | 160 |
@@ -296,7 +296,7 @@ |
||
296 | 296 | * @param string $abstract |
297 | 297 | * @param string|object $concrete |
298 | 298 | */ |
299 | - public static function set(string $abstract, string|object $concrete): void |
|
299 | + public static function set(string $abstract, string | object $concrete): void |
|
300 | 300 | { |
301 | 301 | if (is_string($concrete)) { |
302 | 302 | Container::getInstance()->bind($abstract, $concrete); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * |
81 | 81 | * @param array<string>|int|AbstractCalendarDate $date |
82 | 82 | */ |
83 | - protected function __construct(array|int|AbstractCalendarDate $date) |
|
83 | + protected function __construct(array | int | AbstractCalendarDate $date) |
|
84 | 84 | { |
85 | 85 | // Construct from an integer (a julian day number) |
86 | 86 | if (is_int($date)) { |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $this->month = static::MONTH_TO_NUMBER[$date[1]] ?? 0; |
98 | 98 | |
99 | 99 | if ($this->month === 0) { |
100 | - $this->day = 0; |
|
100 | + $this->day = 0; |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | $this->year = $this->extractYear($date[0]); |
@@ -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 | ]; |