mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
Fixing a few things. Namespace configuration.
This commit is contained in:
parent
a68933d34c
commit
c9fb1c9110
@ -65,7 +65,7 @@ return array(
|
||||
|
|
||||
*/
|
||||
|
||||
'commands' => __DIR__.'/../app/Console',
|
||||
'console' => __DIR__.'/../app/Console',
|
||||
'config' => __DIR__.'/../config',
|
||||
'controllers' => __DIR__.'/../app/Http/Controllers',
|
||||
'database' => __DIR__.'/../database',
|
||||
|
@ -17,15 +17,23 @@ return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Root Controller Namespace
|
||||
| Generator Namespaces
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This namespace will be automatically prepended to URLs generated via
|
||||
| the URL generator for controller actions, allowing for the simple
|
||||
| and convenient referencing of your namespaced controller class.
|
||||
| These namespaces are utilized by the various class generator Artisan
|
||||
| commands. You are free to change them to whatever you wish or not
|
||||
| at all. The "app:name" command is the easiest way to set these.
|
||||
|
|
||||
*/
|
||||
|
||||
'console' => 'App\Console\\',
|
||||
|
||||
'controllers' => 'App\\Http\\Controllers\\',
|
||||
|
||||
'filters' => 'App\Http\Filters\\',
|
||||
|
||||
'providers' => 'App\Providers\\',
|
||||
|
||||
'requests' => 'App\Http\Requests\\',
|
||||
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user