aliases.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Class Aliases
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here, you can specify any class aliases that you would like registered
  9. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  10. |
  11. | Aliases make it more convenient to use namespaced classes. Instead of
  12. | referring to the class using its full namespace, you may simply use
  13. | the alias defined here.
  14. |
  15. | We have already aliased common Laravel classes to make your life easier.
  16. |
  17. */
  18. 'Asset' => 'System\\Asset',
  19. 'Auth' => 'System\\Auth',
  20. 'Benchmark' => 'System\\Benchmark',
  21. 'Cache' => 'System\\Cache',
  22. 'Config' => 'System\\Config',
  23. 'Cookie' => 'System\\Cookie',
  24. 'Crypt' => 'System\\Crypt',
  25. 'Date' => 'System\\Date',
  26. 'DB' => 'System\\DB',
  27. 'Eloquent' => 'System\\DB\\Eloquent',
  28. 'File' => 'System\\File',
  29. 'Form' => 'System\\Form',
  30. 'Hash' => 'System\\Hash',
  31. 'HTML' => 'System\\HTML',
  32. 'Inflector' => 'System\\Inflector',
  33. 'Input' => 'System\\Input',
  34. 'Lang' => 'System\\Lang',
  35. 'URL' => 'System\\URL',
  36. 'Redirect' => 'System\\Redirect',
  37. 'Request' => 'System\\Request',
  38. 'Response' => 'System\\Response',
  39. 'Session' => 'System\\Session',
  40. 'Str' => 'System\\Str',
  41. 'Validator' => 'System\\Validator',
  42. 'View' => 'System\\View',
  43. );