Test Failed
Push — master ( 14f9eb...bc9c15 )
by Maximo
02:13
created

api/routes/api.php (1 issue)

1
<?php
0 ignored issues
show
End of line character is invalid; expected "\n" but found "\r\n"
Loading history...
2
3
use Baka\Http\RouterCollection;
4
5
/*
6
|--------------------------------------------------------------------------
7
| API Routes
8
|--------------------------------------------------------------------------
9
|
10
| Here is where you can register all of the routes for api.
11
 */
12
13
$router = new RouterCollection($application);
14
$router->setPrefix('/v1');
15
$router->get('/', [
16
    'Baka\Api\Controllers\IndexController',
17
    'index',
18
]);
19
20
$router->get('/status', [
21
    'Baka\Api\Controllers\IndexController',
22
    'status',
23
]);
24
25
$router->mount();
26