aliases.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. | We have already setup a few to make your life easier.
  12. |
  13. */
  14. 'Auth' => 'System\\Auth',
  15. 'Benchmark' => 'System\\Benchmark',
  16. 'Cache' => 'System\\Cache',
  17. 'Config' => 'System\\Config',
  18. 'Cookie' => 'System\\Cookie',
  19. 'Crypt' => 'System\\Crypt',
  20. 'Date' => 'System\\Date',
  21. 'DB' => 'System\\DB',
  22. 'Eloquent' => 'System\\DB\\Eloquent',
  23. 'File' => 'System\\File',
  24. 'Form' => 'System\\Form',
  25. 'Hash' => 'System\\Hash',
  26. 'HTML' => 'System\\HTML',
  27. 'Inflector' => 'System\\Inflector',
  28. 'Input' => 'System\\Input',
  29. 'Lang' => 'System\\Lang',
  30. 'URL' => 'System\\URL',
  31. 'Redirect' => 'System\\Redirect',
  32. 'Request' => 'System\\Request',
  33. 'Response' => 'System\\Response',
  34. 'Session' => 'System\\Session',
  35. 'Str' => 'System\\Str',
  36. 'Validator' => 'System\\Validator',
  37. 'View' => 'System\\View',
  38. );