Passed
Push — master ( e8e8a4...d61ae4 )
by tsugumu
02:36
created
src/Normalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $out = $in;
36 36
 
37 37
         foreach ($this->pipelines as $propName => $pipeline) {
38
-            $out = DotChainOperator::update($out, $propName, function ($in) use ($pipeline) {
38
+            $out = DotChainOperator::update($out, $propName, function($in) use ($pipeline) {
39 39
                 return $pipeline->apply($in);
40 40
             });
41 41
         }
Please login to merge, or discard this patch.
src/PipelineBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         return $this;
18 18
     }
19 19
 
20
-    public function make($filterNames){
20
+    public function make($filterNames) {
21 21
         $filters = array_map(function($name) {
22 22
             if (is_string($name)) {
23 23
                 return $this->filterDict[$name];
Please login to merge, or discard this patch.