LaravelTest
/
artisan
15 строк · 350.0 Байт
1#!/usr/bin/env php
2<?php
3
4use Symfony\Component\Console\Input\ArgvInput;
5
6define('LARAVEL_START', microtime(true));
7
8// Register the Composer autoloader...
9require __DIR__.'/vendor/autoload.php';
10
11// Bootstrap Laravel and handle the command...
12$status = (require_once __DIR__.'/bootstrap/app.php')
13->handleCommand(new ArgvInput);
14
15exit($status);
16