Completed
Branch master (2d2422)
by Volodymyr
03:00
created
Category
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.