Test Setup Failed
Push — master ( 96bf95...c80778 )
by Martijn
02:10
created
src/Vanderlee/Comprehend/Builder/Implementation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
         if ($match instanceof Success && !empty($this->definition->processors)) {
96 96
             foreach ($this->definition->processors as $key => $processor) {
97
-                $match->addResultCallback(function (&$results) use ($key, $processor, $localResults) {
97
+                $match->addResultCallback(function(&$results) use ($key, $processor, $localResults) {
98 98
                     $results[$key] = $processor($localResults, $results);
99 99
                 });
100 100
             }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             // ignore
113 113
         }
114 114
 
115
-        return (string)$this->parser;
115
+        return (string) $this->parser;
116 116
     }
117 117
 
118 118
 }
Please login to merge, or discard this patch.
src/autoloader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-spl_autoload_register(function ($class) {
3
+spl_autoload_register(function($class) {
4 4
     $file = __DIR__ . DIRECTORY_SEPARATOR . $class . '.php';
5 5
     if (!class_exists($class) && is_file($file)) {
6 6
         /** @noinspection PhpIncludeInspection */
Please login to merge, or discard this patch.