register symfony console namespace with autoloader.
This commit is contained in:
parent
c327fdcf47
commit
2c12be305d
|
@ -87,6 +87,21 @@
|
|||
=> path('sys').'database/eloquent/relationships/has_one_or_many'.EXT,
|
||||
));
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register The Symfony Components
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Laravel's "Artisan" CLI makes use of the Symfony Console component to
|
||||
| build a wonderful CLI environment that is both robust and testable.
|
||||
| We'll register the component's namespace here.
|
||||
|
|
||||
*/
|
||||
|
||||
Autoloader::namespaces(array(
|
||||
'Symfony\Component\Console' => path('base').'vendor/Symfony/Component/Console',
|
||||
));
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Set The CLI Options Array
|
||||
|
|
Loading…
Reference in New Issue