From b73e127ed07034a2a9aa6b8598c00b918287b181 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 22 Nov 2014 11:33:14 -0600 Subject: [PATCH] Just use one controller call. --- app/Http/routes.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Http/routes.php b/app/Http/routes.php index f8c3a996..dc0e0796 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -24,6 +24,7 @@ | */ -$router->controller('auth', 'AuthController'); - -$router->controller('password', 'PasswordController'); +$router->controllers([ + 'auth' => 'AuthController', + 'password' => 'PasswordController', +]);