Passed
Push — master ( 6c305a...f9f5fe )
by Kacper
02:57
created
Parser/Result.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public function append($value)
35 35
     {
36
-        if(!$value instanceof MetaToken) {
36
+        if (!$value instanceof MetaToken) {
37 37
             parent::append($value);
38 38
         }
39 39
     }
Please login to merge, or discard this patch.
Language/Language.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             $token = $tokens->current();
119 119
 
120 120
             if ($token->isValid($this, $this->_context)) {
121
-                if($this->_handleToken($token) === false) {
121
+                if ($this->_handleToken($token) === false) {
122 122
                     break;
123 123
                 };
124 124
             }
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
                 if ($start) {
286 286
                     unset($this->_context[spl_object_hash($start)]);
287 287
                 } else {
288
-                    $start = ArrayHelper::find(array_reverse($this->_context), function ($k, $v) use ($token) {
288
+                    $start = ArrayHelper::find(array_reverse($this->_context), function($k, $v) use ($token) {
289 289
                         return $v === $token->name;
290 290
                     });
291 291
 
Please login to merge, or discard this patch.