Completed
Push — master ( 0ed823...6015f6 )
by Sebastian
11:54
created
src/PaginateRoute.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      *
77 77
      * @param \Illuminate\Contracts\Pagination\Paginator $paginator
78 78
      *
79
-     * @return string|null
79
+     * @return null|integer
80 80
      */
81 81
     public function nextPage(Paginator $paginator)
82 82
     {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * Get the previous page number.
122 122
      *
123
-     * @return string|null
123
+     * @return null|integer
124 124
      */
125 125
     public function previousPage()
126 126
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\PaginateRoute;
4 4
 
5
-use Illuminate\Contracts\Pagination\Paginator;
6 5
 use Illuminate\Contracts\Pagination\LengthAwarePaginator;
6
+use Illuminate\Contracts\Pagination\Paginator;
7 7
 use Illuminate\Contracts\Routing\UrlGenerator;
8 8
 use Illuminate\Routing\Router;
9 9
 use Illuminate\Translation\Translator;
Please login to merge, or discard this patch.