@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function isBetween(int $minimum, int $maximum): self |
122 | 122 | { |
123 | - $this->rules[] = static function (?int $value) use ($minimum, $maximum): ?int { |
|
123 | + $this->rules[] = static function (?int $value) use ($minimum, $maximum) : ?int { |
|
124 | 124 | if (is_int($value) && $value >= $minimum && $value <= $maximum) { |
125 | 125 | return $value; |
126 | 126 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | */ |
159 | 159 | public function isNotEmpty(): self |
160 | 160 | { |
161 | - $this->rules[] = static fn (?string $value): ?string => $value !== null && $value !== '' ? $value : null; |
|
161 | + $this->rules[] = static fn (?string $value) : ?string => $value !== null && $value !== '' ? $value : null; |
|
162 | 162 | |
163 | 163 | return $this; |
164 | 164 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | { |
171 | 171 | $base_url = $this->request->getAttribute('base_url', ''); |
172 | 172 | |
173 | - $this->rules[] = static function (?string $value) use ($base_url): ?string { |
|
173 | + $this->rules[] = static function (?string $value) use ($base_url) : ?string { |
|
174 | 174 | if ($value !== null) { |
175 | 175 | $value_info = parse_url($value); |
176 | 176 | $base_url_info = parse_url($base_url); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | throw new HttpBadRequestException(I18N::translate('The parameter “%s” is missing.', $parameter)); |
269 | 269 | } |
270 | 270 | |
271 | - $callback = static fn (?array $value, Closure $rule): ?array => $rule($value); |
|
271 | + $callback = static fn (?array $value, Closure $rule) : ?array => $rule($value); |
|
272 | 272 | |
273 | 273 | return array_reduce($this->rules, $callback, $value) ?? []; |
274 | 274 | } |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | $value = null; |
296 | 296 | } |
297 | 297 | |
298 | - $callback = static fn (?int $value, Closure $rule): ?int => $rule($value); |
|
298 | + $callback = static fn (?int $value, Closure $rule) : ?int => $rule($value); |
|
299 | 299 | |
300 | 300 | $value = array_reduce($this->rules, $callback, $value) ?? $default; |
301 | 301 | |
@@ -336,9 +336,9 @@ discard block |
||
336 | 336 | $value = null; |
337 | 337 | } |
338 | 338 | |
339 | - $callback = static fn (?string $value, Closure $rule): ?string => $rule($value); |
|
339 | + $callback = static fn (?string $value, Closure $rule) : ?string => $rule($value); |
|
340 | 340 | |
341 | - $value = array_reduce($this->rules, $callback, $value) ?? $default; |
|
341 | + $value = array_reduce($this->rules, $callback, $value) ?? $default; |
|
342 | 342 | |
343 | 343 | if ($value === null) { |
344 | 344 | throw new HttpBadRequestException(I18N::translate('The parameter “%s” is missing.', $parameter)); |
@@ -44,7 +44,7 @@ |
||
44 | 44 | */ |
45 | 45 | public function handle(ServerRequestInterface $request): ResponseInterface |
46 | 46 | { |
47 | - $tree = Validator::attributes($request)->tree(); |
|
47 | + $tree = Validator::attributes($request)->tree(); |
|
48 | 48 | |
49 | 49 | $delete_default_resn_id = Validator::parsedBody($request)->array('delete'); |
50 | 50 |