| 123456789101112131415161718192021222324252627282930313233343536373839404142 | 
							- <?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.
 
- 	|
 
- 	| We have already setup a few to make your life easier.
 
- 	|
 
- 	*/
 
- 	'Auth' => 'System\\Auth',
 
- 	'Benchmark' => 'System\\Benchmark',
 
- 	'Cache' => 'System\\Cache',
 
- 	'Config' => 'System\\Config',
 
- 	'Cookie' => 'System\\Cookie',
 
- 	'Crypt' => 'System\\Crypt',
 
- 	'Date' => 'System\\Date',
 
- 	'DB' => 'System\\DB',
 
- 	'Eloquent' => 'System\\DB\\Eloquent',
 
- 	'File' => 'System\\File',
 
- 	'Form' => 'System\\Form',
 
- 	'Hash' => 'System\\Hash',
 
- 	'HTML' => 'System\\HTML',
 
- 	'Inflector' => 'System\\Inflector',
 
- 	'Input' => 'System\\Input',
 
- 	'Lang' => 'System\\Lang',
 
- 	'URL' => 'System\\URL',
 
- 	'Redirect' => 'System\\Redirect',
 
- 	'Request' => 'System\\Request',
 
- 	'Response' => 'System\\Response',
 
- 	'Session' => 'System\\Session',
 
- 	'Str' => 'System\\Str',
 
- 	'Validator' => 'System\\Validator',
 
- 	'View' => 'System\\View',
 
- );
 
 
  |