Typehint all of the routers

This commit is contained in:
James Brooks
2016-03-02 12:18:30 +00:00
parent 73d59e082d
commit d9c97d3ef5
8 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ class StatusPageRoutes
*/
public function map(Registrar $router)
{
$router->group(['middleware' => ['web', 'ready', 'localize']], function ($router) {
$router->group(['middleware' => ['web', 'ready', 'localize']], function (Registrar $router) {
$router->get('/', [
'as' => 'status-page',
'uses' => 'StatusPageController@showIndex',