Passed
Push — master ( 69eaa3...0ba4c6 )
by Volodymyr
05:08 queued 03:36
created
src/BatchProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
 
20 20
     public function process(string $text): array
21 21
     {
22
-        $result = [];
22
+        $result = [ ];
23 23
 
24 24
         foreach ($this->schemes as $scheme) {
25
-            $result[] = (new Processor($scheme))->process($text);
25
+            $result[ ] = (new Processor($scheme))->process($text);
26 26
         }
27 27
 
28 28
         return $result;
Please login to merge, or discard this patch.