Completed
Branch develop (97207f)
by Hugo
12:14
created
src/Debug/JsonExceptionHandler.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @param Exception $exception
31 31
      *
32
-     * @return Response
32
+     * @return JsonResponse
33 33
      */
34 34
     public function createResponse(Exception $exception)
35 35
     {
Please login to merge, or discard this patch.
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.
src/Traits/CreatesHttpResponses.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@  discard block
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * @param mixed $data
13
-     * @param array $metadata
14 13
      * @param array $headers
15 14
      *
16 15
      * @return JsonResponse
@@ -22,7 +21,6 @@  discard block
 block discarded – undo
22 21
 
23 22
     /**
24 23
      * @param mixed $data
25
-     * @param array $metadata
26 24
      * @param array $headers
27 25
      *
28 26
      * @return JsonResponse
@@ -212,7 +210,6 @@  discard block
 block discarded – undo
212 210
 
213 211
     /**
214 212
      * @param array $data
215
-     * @param array $metadata
216 213
      * @param int   $status
217 214
      * @param array $headers
218 215
      *
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.