48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Class Aliases
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here, you can specify any class aliases that you would like registered
|
|
| when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
|
|
|
|
|
| Aliases make it more convenient to use namespaced classes. Instead of
|
|
| referring to the class using its full namespace, you may simply use
|
|
| the alias defined here.
|
|
|
|
|
| We have already aliased common Laravel classes to make your life easier.
|
|
|
|
|
*/
|
|
|
|
'Asset' => 'Laravel\\Asset',
|
|
'Auth' => 'Laravel\\Auth',
|
|
'Benchmark' => 'Laravel\\Benchmark',
|
|
'Cache' => 'Laravel\\Cache',
|
|
'Config' => 'Laravel\\Config',
|
|
'Cookie' => 'Laravel\\Cookie',
|
|
'Crypter' => 'Laravel\\Crypter',
|
|
'DB' => 'Laravel\\DB',
|
|
'Eloquent' => 'Laravel\\DB\\Eloquent\\Model',
|
|
'File' => 'Laravel\\File',
|
|
'Form' => 'Laravel\\Form',
|
|
'Hash' => 'Laravel\\Hash',
|
|
'HTML' => 'Laravel\\HTML',
|
|
'Inflector' => 'Laravel\\Inflector',
|
|
'Input' => 'Laravel\\Input',
|
|
'Lang' => 'Laravel\\Lang',
|
|
'Loader' => 'Laravel\\Loader',
|
|
'Package' => 'Laravel\\Package',
|
|
'URL' => 'Laravel\\URL',
|
|
'Redirect' => 'Laravel\\Redirect',
|
|
'Request' => 'Laravel\\Request',
|
|
'Response' => 'Laravel\\Response',
|
|
'Session' => 'Laravel\\Session',
|
|
'Str' => 'Laravel\\Str',
|
|
'Validator' => 'Laravel\\Validator',
|
|
'View' => 'Laravel\\View',
|
|
|
|
); |