12 lines
248 B
PHP
12 lines
248 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
require __DIR__.'/vendor/autoload.php';
|
|
|
|
$status = (require_once __DIR__.'/bootstrap/app.php')
|
|
->handleCommand(new Symfony\Component\Console\Input\ArgvInput);
|
|
|
|
exit($status);
|