Completed
Push — master ( 671128...3a40a1 )
by Karsten
02:35
created
src/PeekAndPoke/Component/Psi/Operation/FullSet/UniqueOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,11 +31,11 @@
 block discarded – undo
31 31
      */
32 32
     public function apply(\Iterator $set)
33 33
     {
34
-        $result = [];
34
+        $result = [ ];
35 35
 
36 36
         foreach ($set as $item) {
37
-            if (! in_array($item, $result, $this->strict)) {
38
-                $result[] = $item;
37
+            if ( ! in_array($item, $result, $this->strict)) {
38
+                $result[ ] = $item;
39 39
             }
40 40
         }
41 41
 
Please login to merge, or discard this patch.