Passed
Push — master ( a1b5e7...8ce90a )
by Smoren
01:41
created
src/Factories/SchematorFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
     {
21 21
         $builder = static::createBuilder();
22 22
 
23
-        if($withBaseFilters) {
23
+        if ($withBaseFilters) {
24 24
             $builder->withFilters(new BaseFiltersStorage());
25 25
         }
26 26
 
27
-        if(count($extraFilters)) {
27
+        if (count($extraFilters)) {
28 28
             $builder->withFilters($extraFilters);
29 29
         }
30 30
 
Please login to merge, or discard this patch.
src/Factories/SchematorBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function withFilters(iterable $filters): SchematorBuilderInterface
42 42
     {
43
-        foreach($filters as $filterName => $filter) {
43
+        foreach ($filters as $filterName => $filter) {
44 44
             $this->schemator->addFilter($filterName, $filter);
45 45
         }
46 46
         return $this;
Please login to merge, or discard this patch.