Passed
Push — master ( 84581c...064a61 )
by Tomasz
01:49
created
src/Bridge/Doctrine/ApplyFilters.php 1 patch
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.
src/Bridge/Doctrine/DbalWalkablePaginator.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
     protected function findAll(): array
22 22
     {
23 23
         $this->qb
24
-             ->setMaxResults($this->limit)
25
-             ->setFirstResult($this->offset);
24
+                ->setMaxResults($this->limit)
25
+                ->setFirstResult($this->offset);
26 26
 
27 27
         return $this->qb->execute()->fetchAll();
28 28
     }
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
     {
32 32
         $qb = clone $this->qb;
33 33
         $qb->select('COUNT(*)')
34
-           ->setMaxResults(null)
35
-           ->setFirstResult(null)
36
-           ->resetQueryPart('orderBy');
34
+            ->setMaxResults(null)
35
+            ->setFirstResult(null)
36
+            ->resetQueryPart('orderBy');
37 37
 
38 38
         return (int) $qb->execute()->fetchColumn();
39 39
     }
Please login to merge, or discard this patch.
src/Bridge/Doctrine/DbalPaginator.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
     protected function findAll(): array
21 21
     {
22 22
         $this->qb
23
-             ->setMaxResults($this->limit)
24
-             ->setFirstResult($this->offset);
23
+                ->setMaxResults($this->limit)
24
+                ->setFirstResult($this->offset);
25 25
 
26 26
         return $this->qb->execute()->fetchAll();
27 27
     }
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
         $qb = clone $this->qb;
32 32
 
33 33
         $qb->select('COUNT(*)')
34
-           ->setMaxResults(null)
35
-           ->setFirstResult(null)
36
-           ->resetQueryPart('orderBy');
34
+            ->setMaxResults(null)
35
+            ->setFirstResult(null)
36
+            ->resetQueryPart('orderBy');
37 37
 
38 38
         return (int) $qb->execute()->fetchColumn();
39 39
     }
Please login to merge, or discard this patch.