Test Failed
Push — master ( 8143c0...b7a9e3 )
by Tomasz
02:05
created
src/Bridge/Ramsey/RamseyBinaryUuidTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Ramsey;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/Doctrine/DbalWalkablePaginator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Doctrine;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/Doctrine/Query/TooManyColumnsException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Doctrine\Query;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/Doctrine/Query/WalkableDbalQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Doctrine\Query;
5 5
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $walker = $this->buildWalker($parameters);
38 38
 
39
-        return array_map(function ($result) use ($walker) {
39
+        return array_map(function($result) use ($walker) {
40 40
             return $walker->walk($result);
41 41
         }, parent::getResult($qb, ...$parameters));
42 42
     }
Please login to merge, or discard this patch.
src/Bridge/Doctrine/Query/DbalQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Doctrine\Query;
5 5
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function getScalarResult(QueryBuilder $qb, string ...$parameters): array
63 63
     {
64
-        return array_map(function (array $row) {
64
+        return array_map(function(array $row) {
65 65
             return $this->getColumn($row);
66 66
         }, $this->getResult($qb, ...$parameters));
67 67
     }
Please login to merge, or discard this patch.
src/Bridge/Doctrine/ApplyFilters.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
             $columnName = $this->getColumnName($filter->name());
36 36
             $qb->andWhere(sprintf('%s = :%s', $columnName, $filter->name()))
37
-               ->setParameter($filter->name(), $value);
37
+                ->setParameter($filter->name(), $value);
38 38
         }
39 39
 
40 40
         // add orders by to a query
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Doctrine;
5 5
 
Please login to merge, or discard this patch.
src/Bridge/Symfony/RequestFiltersBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Bridge\Symfony;
5 5
 
Please login to merge, or discard this patch.
src/Filters/DataTransformer/ArrayTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Filters\DataTransformer;
5 5
 
Please login to merge, or discard this patch.
src/Filters/Filter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ReadModel\Filters;
5 5
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         }
55 55
 
56 56
         if (is_array($value)) {
57
-            return array_map(function ($v) { return trim($v); }, $value);
57
+            return array_map(function($v) { return trim($v); }, $value);
58 58
         }
59 59
 
60 60
         return $value;
Please login to merge, or discard this patch.