Test Failed
Pull Request — master (#54)
by
unknown
11:51
created
src/MigrationNamespaceChangeRector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public function getNodeTypes(): array
41 41
     {
42
-        return [Name::class];
42
+        return [ Name::class ];
43 43
     }
44 44
 
45 45
     public function refactor(Node $node): ?Node
Please login to merge, or discard this patch.
src/MigrationSignatureRector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      */
66 66
     public function getNodeTypes(): array
67 67
     {
68
-        return [ClassMethod::class];
68
+        return [ ClassMethod::class ];
69 69
     }
70 70
 
71 71
     public function refactor(Node $node): ?Node
Please login to merge, or discard this patch.
src/MigrationClassRenameRector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function getNodeTypes(): array
52 52
     {
53
-        return [Name::class];
53
+        return [ Name::class ];
54 54
     }
55 55
 
56 56
     public function refactor(Node $node): ?Node
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
                 if ($node->isQualified()) {
64 64
                     return new Name($qualifiedNameParts);
65 65
                 } else {
66
-                    $className = $qualifiedNameParts[count($qualifiedNameParts) - 1];
66
+                    $className = $qualifiedNameParts[ count($qualifiedNameParts) - 1 ];
67 67
                     return new Name($className);
68 68
                 }
69 69
             }
Please login to merge, or discard this patch.