Completed
Push — master ( 8c42c0...969118 )
by Timo
14s
created
src/Models/DataComponents/Paginator.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -96,12 +96,12 @@
 block discarded – undo
96 96
         }
97 97
 
98 98
         return '<ul class="pagination">' .
99
-               $this->_renderListItem($this->_currentPage - 1, $this->_getFirstPageUrl(), $this->_firstPageSymbol) .
100
-               $this->_renderListItem($this->_currentPage - 1, $this->_getPreviousPageUrl(), $this->_previousPageSymbol) .
101
-               $this->_renderPageList() .
102
-               $this->_renderListItem($this->_currentPage + 1, $this->_getNextPageUrl(), $this->_nextPageSymbol) .
103
-               $this->_renderListItem($this->_currentPage + 1, $this->_getLastPageUrl(), $this->_lastPageSymbol) .
104
-               '</ul>';
99
+                $this->_renderListItem($this->_currentPage - 1, $this->_getFirstPageUrl(), $this->_firstPageSymbol) .
100
+                $this->_renderListItem($this->_currentPage - 1, $this->_getPreviousPageUrl(), $this->_previousPageSymbol) .
101
+                $this->_renderPageList() .
102
+                $this->_renderListItem($this->_currentPage + 1, $this->_getNextPageUrl(), $this->_nextPageSymbol) .
103
+                $this->_renderListItem($this->_currentPage + 1, $this->_getLastPageUrl(), $this->_lastPageSymbol) .
104
+                '</ul>';
105 105
     }
106 106
 
107 107
     /**
Please login to merge, or discard this patch.
src/Models/DataComponents/DataScout.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,9 +120,9 @@
 block discarded – undo
120 120
     public function render() : string
121 121
     {
122 122
         return '<form method="get" action="' . $this->_buildSearchUrl() .
123
-               '"><div class="row"><div class="col-md-10"><input name="search" class="form-control data-scout-input" placeholder="' .
124
-               $this->_placeholder . '"/></div><div class="col-md-2"><button type="submit" class="btn btn-primary">' .
125
-               $this->_buttonText . '</button></div></div></form>';
123
+                '"><div class="row"><div class="col-md-10"><input name="search" class="form-control data-scout-input" placeholder="' .
124
+                $this->_placeholder . '"/></div><div class="col-md-2"><button type="submit" class="btn btn-primary">' .
125
+                $this->_buttonText . '</button></div></div></form>';
126 126
     }
127 127
 
128 128
     /**
Please login to merge, or discard this patch.
src/Models/DataTable.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -284,9 +284,9 @@
 block discarded – undo
284 284
         }
285 285
 
286 286
         return TableRenderer::open($this->_classes) .
287
-               TableRenderer::renderHeaders($this->_fetchHeaders(), $this->_headerFormatters) .
288
-               TableRenderer::renderBody($data, $this->_columns) .
289
-               TableRenderer::close();
287
+                TableRenderer::renderHeaders($this->_fetchHeaders(), $this->_headerFormatters) .
288
+                TableRenderer::renderBody($data, $this->_columns) .
289
+                TableRenderer::close();
290 290
     }
291 291
 
292 292
     /**
Please login to merge, or discard this patch.