Completed
Push — master ( 46970d...7de56e )
by Timo
06:29
created
src/Models/HeaderFormatters/SortableHeader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         if ($this->_showSortLink($headerAttributeName))
113 113
         {
114 114
             $header->key = '<a class="sortable-header" href="' . (\request()->url() . '?' . $this->_buildSortQuery($headerAttributeName, $direction)) . '">' .
115
-                           $header->key . ' <span class="sort-symbol">' . $this->_sortingSymbols[$direction] . '</span></a>';
115
+                            $header->key . ' <span class="sort-symbol">' . $this->_sortingSymbols[$direction] . '</span></a>';
116 116
         }
117 117
     }
118 118
 
Please login to merge, or discard this patch.
src/Models/DataComponents/Paginator.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -84,12 +84,12 @@
 block discarded – undo
84 84
         }
85 85
 
86 86
         return '<ul class="pagination">' .
87
-               $this->_renderListItem($this->_currentPage - 1, $this->_getFirstPageUrl(), $this->_pageSymbols['first']) .
88
-               $this->_renderListItem($this->_currentPage - 1, $this->_getPreviousPageUrl(), $this->_pageSymbols['previous']) .
89
-               $this->_renderPageList() .
90
-               $this->_renderListItem($this->_currentPage + 1, $this->_getNextPageUrl(), $this->_pageSymbols['next']) .
91
-               $this->_renderListItem($this->_currentPage + 1, $this->_getLastPageUrl(), $this->_pageSymbols['last']) .
92
-               '</ul>';
87
+                $this->_renderListItem($this->_currentPage - 1, $this->_getFirstPageUrl(), $this->_pageSymbols['first']) .
88
+                $this->_renderListItem($this->_currentPage - 1, $this->_getPreviousPageUrl(), $this->_pageSymbols['previous']) .
89
+                $this->_renderPageList() .
90
+                $this->_renderListItem($this->_currentPage + 1, $this->_getNextPageUrl(), $this->_pageSymbols['next']) .
91
+                $this->_renderListItem($this->_currentPage + 1, $this->_getLastPageUrl(), $this->_pageSymbols['last']) .
92
+                '</ul>';
93 93
     }
94 94
 
95 95
     /**
Please login to merge, or discard this patch.