Passed
Push — master ( 072275...3d52a7 )
by Edward
01:28
created
src/Parser/Parser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,17 +12,17 @@
 block discarded – undo
12 12
     /**
13 13
      * FSM state expecting part of a pointer:  "/" reference.
14 14
      */
15
-    const STATE_POINTER_PART    = 0;
15
+    const STATE_POINTER_PART = 0;
16 16
 
17 17
     /**
18 18
      * FSM state expecting part of a reference: *( escaped / unescaped).
19 19
      */
20
-    const STATE_REFERENCE_PART  = 1;
20
+    const STATE_REFERENCE_PART = 1;
21 21
 
22 22
     /**
23 23
      * FSM pseudo-state for successful finish.
24 24
      */
25
-    const STATE_FINISH          = 2;
25
+    const STATE_FINISH = 2;
26 26
 
27 27
     /**
28 28
      * ReferenceBuffer for a single reference.
Please login to merge, or discard this patch.