Completed
Push — master ( 80d8c2...cd32d2 )
by Vincent
05:43
created
src/TableInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      *
109 109
      * @param callable(T, K=):void $consumer
110 110
      */
111
-    public function forEach(callable $consumer): void;
111
+    public function forEach (callable $consumer): void;
112 112
 
113 113
     /**
114 114
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Stream/Collector/Joining.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,6 +70,6 @@
 block discarded – undo
70 70
      */
71 71
     public function finalize(): string
72 72
     {
73
-        return $this->prefix.(string)$this->aggregation.$this->suffix;
73
+        return $this->prefix.(string) $this->aggregation.$this->suffix;
74 74
     }
75 75
 }
Please login to merge, or discard this patch.
src/OrderedCollectionInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @param callable(T, int=):void $consumer
57 57
      */
58
-    public function forEach(callable $consumer): void;
58
+    public function forEach (callable $consumer): void;
59 59
 }
Please login to merge, or discard this patch.