Test Setup Failed
Push — master ( ff118e...b500f0 )
by Arkadiusz
02:36
created
src/FeatureUnion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
             throw new InvalidArgumentException('At least one pipeline is required');
23 23
         }
24 24
 
25
-        $this->pipelines = array_map(static function (Pipeline $pipeline): Pipeline {
25
+        $this->pipelines = array_map(static function(Pipeline $pipeline): Pipeline {
26 26
             return $pipeline;
27 27
         }, $pipelines);
28 28
     }
Please login to merge, or discard this patch.
src/Pipeline.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function __construct(array $transformers, ?Estimator $estimator = null)
25 25
     {
26
-        $this->transformers = array_map(static function (Transformer $transformer): Transformer {
26
+        $this->transformers = array_map(static function(Transformer $transformer): Transformer {
27 27
             return $transformer;
28 28
         }, $transformers);
29 29
         $this->estimator = $estimator;
Please login to merge, or discard this patch.