Merge pull request #3021 from hernandev/develop

Fix typo on config namespaces.controller to namespace.controllers
This commit is contained in:
Taylor Otwell 2014-09-16 11:41:47 -05:00
commit 100f727fd4
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class RouteServiceProvider extends ServiceProvider {
public function before()
{
URL::setRootControllerNamespace(
trim(config('namespaces.controller'), '\\')
trim(config('namespaces.controllers'), '\\')
);
}
@ -38,4 +38,4 @@ public function map()
});
}
}
}