14 lines
242 B
Text
14 lines
242 B
Text
|
|
#!/usr/bin/env php
|
||
|
|
<?php
|
||
|
|
|
||
|
|
use Core\Boot;
|
||
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
||
|
|
|
||
|
|
define('LARAVEL_START', microtime(true));
|
||
|
|
|
||
|
|
require __DIR__.'/vendor/autoload.php';
|
||
|
|
|
||
|
|
$status = Boot::app()->handleCommand(new ArgvInput);
|
||
|
|
|
||
|
|
exit($status);
|