Passed
Push — master ( bd5a87...2c2744 )
by Divine Niiquaye
02:27
created
src/Reporter/Matrix.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     {
68 68
         $orderedTasks = $this->tasks;
69 69
 
70
-        \usort($orderedTasks, function (Task $a, Task $b) {
70
+        \usort($orderedTasks, function(Task $a, Task $b) {
71 71
             return $a->duration() > $b->duration() ? 1 : -1;
72 72
         });
73 73
 
Please login to merge, or discard this patch.
src/Routers/SunriseRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
                 $pattern,
96 96
                 (array) $route['methods'],
97 97
                 new CallableRequestHandler(
98
-                    function (ServerRequestInterface $request): ResponseInterface {
98
+                    function(ServerRequestInterface $request): ResponseInterface {
99 99
                         return (new ResponseFactory())->createJsonResponse(200, [
100 100
                             'status' => 'ok',
101 101
                             'method' => $request->getMethod(),
Please login to merge, or discard this patch.