Passed
Push — main ( baad3c...521dc8 )
by Thierry
01:50
created
templates/views/bootstrap3/pagination/wrapper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <ul class="pagination">
2 2
 <?php
3
-    if(($this->prev))
3
+    if (($this->prev))
4 4
     {
5 5
         echo $this->prev;
6 6
     }
7
-    foreach($this->links as $link)
7
+    foreach ($this->links as $link)
8 8
     {
9 9
         echo $link;
10 10
     }
11
-    if(($this->next))
11
+    if (($this->next))
12 12
     {
13 13
         echo $this->next;
14 14
     }
Please login to merge, or discard this patch.
templates/views/bootstrap4/pagination/wrapper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <nav aria-label="">
2 2
     <ul class="pagination">
3 3
 <?php
4
-    if(($this->prev))
4
+    if (($this->prev))
5 5
     {
6 6
         echo $this->prev;
7 7
     }
8
-    foreach($this->links as $link)
8
+    foreach ($this->links as $link)
9 9
     {
10 10
         echo $link;
11 11
     }
12
-    if(($this->next))
12
+    if (($this->next))
13 13
     {
14 14
         echo $this->next;
15 15
     }
Please login to merge, or discard this patch.