Passed
Push — master ( de4639...eb0a83 )
by BruceScrutinizer
02:01
created
src/Parser/Node/PhpNode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@
 block discarded – undo
59 59
         $this->matchKey = new BooleanMatchKey();
60 60
         $this->matchValue = new BooleanMatchValue();
61 61
 
62
-        $this->listNodeProcessor[UseUse::class] = static function (Node $node): string {
62
+        $this->listNodeProcessor[UseUse::class] = static function(Node $node): string {
63 63
             /** @var UseUse $node*/
64 64
             return $node->name->toCodeString();
65 65
         };
66 66
 
67
-        $this->listNodeProcessor[FullyQualified::class] = static function (Node $node): string {
67
+        $this->listNodeProcessor[FullyQualified::class] = static function(Node $node): string {
68 68
             /** @var FullyQualified $node*/
69 69
             return $node->toCodeString();
70 70
         };
Please login to merge, or discard this patch.
src/Result/ResultCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 final class ResultCollector
6 6
 {
7 7
     /** @var array<ResultInterface>  */
8
-    private $listResult ;
8
+    private $listResult;
9 9
 
10 10
     public function __construct()
11 11
     {
Please login to merge, or discard this patch.
src/Command/NamespaceProtectorCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
         $output->writeln('<fg=green>Elapsed time: ' . $elapsed_time . '</>');
19 19
 
20
-        return $returnValue ;
20
+        return $returnValue;
21 21
     }
22 22
 
23 23
     private function startWatch(): float
Please login to merge, or discard this patch.