Completed
Push — master ( f7d146...cf1078 )
by Alex
03:19
created
Repository/PageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             ->where('page.category = :category')
33 33
             ->orderBy('page.'.$orderBy, $order)
34 34
             ->setMaxResults($limit)
35
-            ->setFirstResult($limit*($page-1))
35
+            ->setFirstResult($limit * ($page-1))
36 36
             ->setParameter('category', $category)
37 37
         ;
38 38
 
Please login to merge, or discard this patch.
Controller/AbstractCmsController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,9 +61,9 @@
 block discarded – undo
61 61
                 throw $this->createNotFoundException(($element instanceof Page
62 62
                         ? 'Page'
63 63
                         : ($element
64
-                           instanceof
65
-                           Category ? 'Category' : 'Elements'))
66
-                                                     .' hierarchy not found.');
64
+                            instanceof
65
+                            Category ? 'Category' : 'Elements'))
66
+                                                        .' hierarchy not found.');
67 67
             }
68 68
         }
69 69
 
Please login to merge, or discard this patch.