12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- define('LARAVEL_START', microtime(true));
- require __DIR__.'/../vendor/autoload.php';
- if (file_exists($compiled = __DIR__.'/compiled.php'))
- {
- require $compiled;
- }
- if (is_dir($workbench = __DIR__.'/../workbench'))
- {
- Illuminate\Workbench\Starter::start($workbench);
- }
|