Mega work on structure.

This commit is contained in:
Taylor Otwell
2014-08-20 00:26:14 -05:00
parent aae8ef3059
commit 177d1ebb7a
19 changed files with 74 additions and 37 deletions
+7 -7
View File
@@ -98,13 +98,13 @@ return array(
/*
* Application Service Providers...
*/
'Providers\AppServiceProvider',
'Providers\ArtisanServiceProvider',
'Providers\ErrorServiceProvider',
'Providers\EventServiceProvider',
'Providers\FilterServiceProvider',
'Providers\LogServiceProvider',
'Providers\RouteServiceProvider',
'App\Providers\AppServiceProvider',
'App\Providers\ArtisanServiceProvider',
'App\Providers\ErrorServiceProvider',
'App\Providers\EventServiceProvider',
'App\Providers\FilterServiceProvider',
'App\Providers\LogServiceProvider',
'App\Providers\RouteServiceProvider',
/*
* Laravel Framework Service Providers...
+31
View File
@@ -0,0 +1,31 @@
<?php
return array(
/*
|--------------------------------------------------------------------------
| Application Namespace
|--------------------------------------------------------------------------
|
| This is the root namespace used by the various Laravel generator tasks
| that are able to build controllers, console commands and many other
| classes for you. You may set the name via the "app:name" command.
|
*/
'root' => 'App\\',
/*
|--------------------------------------------------------------------------
| Root Controller Namespace
|--------------------------------------------------------------------------
|
| 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.
|
*/
'controllers' => 'App\Http\Controllers',
);