Passed
Pull Request — master (#1180)
by Tarmo
05:57
created
src/Compiler/StopwatchCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Compiler/StopwatchCompilerPass.php
5 5
  *
Please login to merge, or discard this patch.
src/Decorator/StopwatchDecorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.