Passed
Push — develop ( a2e445...3f2ff8 )
by nguereza
11:57
created
src/Executor.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -120,8 +120,8 @@  discard block
 block discarded – undo
120 120
         $cacheKey = $expression;
121 121
         if (!array_key_exists($cacheKey, $this->caches)) {
122 122
             $tokens = (new Tokenizer($expression, $this->operators))
123
-                       ->tokenize()
124
-                       ->buildReversePolishNotation();
123
+                        ->tokenize()
124
+                        ->buildReversePolishNotation();
125 125
 
126 126
             if ($cache) {
127 127
                 $this->caches[$cacheKey] = $tokens;
@@ -456,8 +456,8 @@  discard block
 block discarded – undo
456 456
     protected function defaultVariables(): array
457 457
     {
458 458
         return [
459
-          'pi' => 3.14159265359,
460
-          'e' => 2.71828182846
459
+            'pi' => 3.14159265359,
460
+            'e' => 2.71828182846
461 461
         ];
462 462
     }
463 463
 }
Please login to merge, or discard this patch.