Passed
Push — master ( ff1a3c...f7850f )
by Smoren
01:51
created
src/Components/MassSchemator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function generate(iterable $source, array $schema): Generator
34 34
     {
35
-        foreach($source as $item) {
35
+        foreach ($source as $item) {
36 36
             yield $this->schemator->exec($item, $schema);
37 37
         }
38 38
     }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         $gen = $this->generate($source, $schema);
46 46
         $result = [];
47 47
 
48
-        foreach($gen as $item) {
48
+        foreach ($gen as $item) {
49 49
             $result[] = $item;
50 50
         }
51 51
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $gen = $this->generate($source, $schema);
63 63
         $result = [];
64 64
 
65
-        foreach($gen as $item) {
65
+        foreach ($gen as $item) {
66 66
             $result[] = $item;
67 67
         }
68 68
 
Please login to merge, or discard this patch.