Completed
Push — develop ( 9f4c0d...1e92af )
by
unknown
04:04
created
src/Debug/JsonExceptionHandler.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
                 $array = new \ArrayObject($value);
146 146
                 $result[$key] = $array['__PHP_Incomplete_Class_Name'];
147 147
             } else {
148
-                $result[$key] = (string)$value;
148
+                $result[$key] = (string) $value;
149 149
             }
150 150
         }
151 151
 
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Exception;
6 6
 use Illuminate\Http\Exceptions\HttpResponseException;
7 7
 use Illuminate\Http\JsonResponse;
8
-use Illuminate\Http\Response;
9 8
 use League\OAuth2\Server\Exception\OAuthException;
10 9
 use Symfony\Component\HttpKernel\Exception\HttpException;
11 10
 
Please login to merge, or discard this patch.
src/Traits/PaginatesData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
             // Do nothing, because we don't care ...
85 85
         }
86 86
 
87
-        return new PagerfantaPaginatorAdapter($pager, function ($page) {
87
+        return new PagerfantaPaginatorAdapter($pager, function($page) {
88 88
             return "page={$page}";
89 89
         });
90 90
     }
Please login to merge, or discard this patch.