Completed
Pull Request — master (#215)
by Alexander
01:55
created
src/GridInputProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
      *
135 135
      * @param string $key
136 136
      * @param $default
137
-     * @return mixed
137
+     * @return integer
138 138
      */
139 139
     public function getValue($key, $default = null)
140 140
     {
Please login to merge, or discard this patch.
src/Components/Laravel5/Pager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     protected function setupPaginationForReading()
25 25
     {
26
-        Paginator::currentPageResolver(function () {
26
+        Paginator::currentPageResolver(function() {
27 27
             return Request::input("$this->input_key.page", 1);
28 28
         });
29 29
     }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         if (isset($input['page'])) {
51 51
             unset($input['page']);
52 52
         }
53
-        return str_replace('/?', '?',$paginator->appends($this->input_key, $input)->render());
53
+        return str_replace('/?', '?', $paginator->appends($this->input_key, $input)->render());
54 54
     }
55 55
 
56 56
     public function initialize(Grid $grid)
Please login to merge, or discard this patch.