@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | /** |
| 4 | 4 | * /src/Compiler/StopwatchCompilerPass.php |
| 5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | /** |
| 4 | 4 | * /src/Decorator/StopwatchDecorator.php |
| 5 | 5 | * |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $suffix = []; |
| 48 | 48 | |
| 49 | 49 | $methods = $class->getMethods(ReflectionMethod::IS_PUBLIC); |
| 50 | - $methods = array_filter($methods, static fn ($method): bool => !$method->isStatic() && !$method->isFinal()); |
|
| 50 | + $methods = array_filter($methods, static fn($method): bool => !$method->isStatic() && !$method->isFinal()); |
|
| 51 | 51 | |
| 52 | 52 | foreach ($methods as $method) { |
| 53 | 53 | $methodName = $method->getName(); |