We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -27,6 +27,6 @@ |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | // @phpstan-ignore-next-line |
30 | - return array_map(fn (ReflectionAttribute $attribute) => $attribute->newInstance(), $attributes); |
|
30 | + return array_map(fn(ReflectionAttribute $attribute) => $attribute->newInstance(), $attributes); |
|
31 | 31 | } |
32 | 32 | } |
@@ -442,7 +442,7 @@ |
||
442 | 442 | $reflectionConstant = new ReflectionClassConstant($reflectionClass->getName(), $name); |
443 | 443 | $valueConfig = self::getDescriptionConfiguration(static::getMetadatas($reflectionConstant), true); |
444 | 444 | |
445 | - $enumValueAnnotation = current(array_filter($enumValues, fn ($enumValueAnnotation) => $enumValueAnnotation->name === $name)); |
|
445 | + $enumValueAnnotation = current(array_filter($enumValues, fn($enumValueAnnotation) => $enumValueAnnotation->name === $name)); |
|
446 | 446 | $valueConfig['value'] = $value; |
447 | 447 | |
448 | 448 | if (false !== $enumValueAnnotation) { |