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 SetupRoutes
*/
public function map(Registrar $router)
{
$router->group(['middleware' => ['web', 'setup']], function ($router) {
$router->group(['middleware' => ['web', 'setup']], function (Registrar $router) {
$router->controller('setup', 'SetupController');
});
}