Passed
Push — master ( dc08d1...b0ffba )
by Maxime
02:09 queued 20s
created
examples/index.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 $router = new Router();
8 8
 
9 9
 $router->get('/home/{id}/{foo}', 'home', function ($id) {
10
-   echo 'hi from home ' . $id;
10
+    echo 'hi from home ' . $id;
11 11
 })->where(['id' => '[0-9]+']);
12 12
 
13 13
 $request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 $router = new Router();
8 8
 
9
-$router->get('/home/{id}/{foo}', 'home', function ($id) {
9
+$router->get('/home/{id}/{foo}', 'home', function($id) {
10 10
    echo 'hi from home ' . $id;
11 11
 })->where(['id' => '[0-9]+']);
12 12
 
Please login to merge, or discard this patch.