Advertisement
Guest User

Untitled

a guest
Mar 7th, 2013
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?php
  2. /**
  3. * Laravel - A PHP Framework For Web Artisans
  4. *
  5. * @package Laravel
  6. * @version 3.2.1
  7. * @author Taylor Otwell <taylorotwell@gmail.com>
  8. * @link http://laravel.com
  9. */
  10.  
  11. // --------------------------------------------------------------
  12. // Tick... Tock... Tick... Tock...
  13. // --------------------------------------------------------------
  14. define('LARAVEL_START', microtime(true));
  15.  
  16. // --------------------------------------------------------------
  17. // Indicate that the request is from the web.
  18. // --------------------------------------------------------------
  19. $web = true;
  20.  
  21. // --------------------------------------------------------------
  22. // Set the core Laravel path constants.
  23. // --------------------------------------------------------------
  24. require '../core/app/paths.php';
  25.  
  26. // --------------------------------------------------------------
  27. // Unset the temporary web variable.
  28. // --------------------------------------------------------------
  29. unset($web);
  30.  
  31. // --------------------------------------------------------------
  32. // Launch Laravel.
  33. // --------------------------------------------------------------
  34. require path('sys').'laravel.php';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement