Test Failed
Push — develop ( 149858...5cd5e7 )
by nguereza
03:42
created
config/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
 use Platine\Framework\Demo\Action\JsonAction;
6 6
 use Platine\Route\Router;
7 7
 
8
-return [static function (Router $router): void {
8
+return [static function(Router $router): void {
9 9
     $router->get('/', HomeAction::class, 'home');
10 10
     $router->get('/download', DownloadAction::class, 'download');
11
-    $router->group('/api', function (Router $router) {
11
+    $router->group('/api', function(Router $router) {
12 12
         $router->post('/json', JsonAction::class, 'api_json');
13 13
     });
14 14
 }];
Please login to merge, or discard this patch.