Passed
Push — master ( 9adf13...511e20 )
by Edward
14:48
created
src/Query/CallbackBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
             ->setType(MatcherFactoryInterface::class)
140 140
             ->getNode();
141 141
         $stmts = array_map(
142
-            function (PhpAstNode $stmt): PhpAstNode {
142
+            function(PhpAstNode $stmt): PhpAstNode {
143 143
                 return $stmt instanceof Expr ? new Expression($stmt) : $stmt;
144 144
             },
145 145
             $this->stmts
Please login to merge, or discard this patch.
src/Processor/Mutator/Mutator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     public function deletePaths(NodeValueInterface $rootNode, PathInterface ...$paths): ?NodeValueInterface
27 27
     {
28 28
         $modifier = new DeleteMutation(...$paths);
29
-        $events =  $this
29
+        $events = $this
30 30
             ->valueWalker
31 31
             ->createMutableEventIterator($rootNode, new Path(), $modifier);
32 32
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         PathInterface ...$paths
42 42
     ): NodeValueInterface {
43 43
         $modifier = new ReplaceMutation($newNode, ...$paths);
44
-        $events =  $this
44
+        $events = $this
45 45
             ->valueWalker
46 46
             ->createMutableEventIterator($rootNode, new Path(), $modifier);
47 47
 
Please login to merge, or discard this patch.