12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- define('LARAVEL_START', microtime(true));
- require __DIR__.'/../vendor/autoload.php';
- if (file_exists($compiledPath = __DIR__.'/../vendor/compiled.php'))
- {
- require $compiledPath;
- }
- elseif (file_exists($compiledPath = __DIR__.'/../storage/framework/compiled.php'))
- {
- require $compiledPath;
- }
|