Completed
Push — master ( 56b74c...17974d )
by Ilias
02:06
created
src/CondParse/ParseStrategy/DefaultStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function executeFor(TokenParserParameter $parserParameter)
26 26
     {
27 27
         while (
28
-            ! $parserParameter->getOperatorStack()->isEmpty()
28
+            !$parserParameter->getOperatorStack()->isEmpty()
29 29
             && $parserParameter->getTokenMap()
30 30
                 ->compareOperatorPrecedence(
31 31
                     $parserParameter->getLexerToken(),
Please login to merge, or discard this patch.
src/CondParse/ParseStrategy/ClosingBracket.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function executeFor(TokenParserParameter $parserParameter)
27 27
     {
28
-        while (! $parserParameter->getOperatorStack()->top()->isToken(TokenMap::TOKEN_BRACKET_OPEN)) {
28
+        while (!$parserParameter->getOperatorStack()->top()->isToken(TokenMap::TOKEN_BRACKET_OPEN)) {
29 29
             $parserParameter->getOperandStack()->push(
30 30
                 $parserParameter
31 31
                     ->getTokenMap()
Please login to merge, or discard this patch.