Passed
Branch master (0332f8)
by Tomasz
03:06
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/TransformUuidsToBytes.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/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/Query/NotFoundException.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/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/Doctrine/DbalPaginator.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.