Completed
Push — master ( a29d2d...4681dd )
by Hannes
10:53 queued 08:08
created
src/Visitor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function visitBefore(Node $node)
41 41
     {
42
-        $this->dispatch('before'.$node->getType(), $node);
42
+        $this->dispatch('before' . $node->getType(), $node);
43 43
     }
44 44
 
45 45
     /**
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function visitAfter(Node $node)
49 49
     {
50
-        $this->dispatch('after'.$node->getType(), $node);
50
+        $this->dispatch('after' . $node->getType(), $node);
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.