aliases.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. 'Crypter' => 'System\\Crypter',
  25. 'DB' => 'System\\DB',
  26. 'Eloquent' => 'System\\DB\\Eloquent\\Model',
  27. 'File' => 'System\\File',
  28. 'Form' => 'System\\Form',
  29. 'Hash' => 'System\\Hash',
  30. 'HTML' => 'System\\HTML',
  31. 'Inflector' => 'System\\Inflector',
  32. 'Input' => 'System\\Input',
  33. 'Lang' => 'System\\Lang',
  34. 'Loader' => 'System\\Loader',
  35. 'Package' => 'System\\Package',
  36. 'URL' => 'System\\URL',
  37. 'Redirect' => 'System\\Redirect',
  38. 'Request' => 'System\\Request',
  39. 'Response' => 'System\\Response',
  40. 'Session' => 'System\\Session',
  41. 'Str' => 'System\\Str',
  42. 'Validator' => 'System\\Validator',
  43. 'View' => 'System\\View',
  44. );