mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
slim comments
This commit is contained in:
parent
1ad4708ddb
commit
b1502f3c07
19
artisan
19
artisan
@ -5,22 +5,11 @@ use Symfony\Component\Console\Input\ArgvInput;
|
|||||||
|
|
||||||
define('LARAVEL_START', microtime(true));
|
define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
/**
|
// Register the Composer autoloader...
|
||||||
* Composer provides a convenient, automatically generated class loader for
|
|
||||||
* this application. We just need to utilize it! We'll simply require it
|
|
||||||
* into the script here so we don't need to manually load our classes.
|
|
||||||
*/
|
|
||||||
|
|
||||||
require __DIR__.'/vendor/autoload.php';
|
require __DIR__.'/vendor/autoload.php';
|
||||||
|
|
||||||
/**
|
// Bootstrap Laravel and handle the command...
|
||||||
* When we run the console application, the current CLI command will be
|
$status = (require_once __DIR__.'/bootstrap/app.php')
|
||||||
* executed by an Artisan command and the exit code is given back to
|
->handleCommand(new ArgvInput);
|
||||||
* the caller. Once the command is handled, the script terminates.
|
|
||||||
*/
|
|
||||||
|
|
||||||
$app = require_once __DIR__.'/bootstrap/app.php';
|
|
||||||
|
|
||||||
$status = $app->handleCommand(new ArgvInput);
|
|
||||||
|
|
||||||
exit($status);
|
exit($status);
|
||||||
|
@ -4,12 +4,6 @@ use Illuminate\Foundation\Application;
|
|||||||
use Illuminate\Foundation\Configuration\Exceptions;
|
use Illuminate\Foundation\Configuration\Exceptions;
|
||||||
use Illuminate\Foundation\Configuration\Middleware;
|
use Illuminate\Foundation\Configuration\Middleware;
|
||||||
|
|
||||||
/**
|
|
||||||
* The first thing we will do is create a new Laravel application instance
|
|
||||||
* which serves as the brain for all of the Laravel components. We will
|
|
||||||
* also use the application to configure core, foundational behavior.
|
|
||||||
*/
|
|
||||||
|
|
||||||
return Application::configure()
|
return Application::configure()
|
||||||
->withProviders()
|
->withProviders()
|
||||||
->withRouting(
|
->withRouting(
|
||||||
|
@ -4,30 +4,14 @@ use Illuminate\Http\Request;
|
|||||||
|
|
||||||
define('LARAVEL_START', microtime(true));
|
define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
/**
|
// Determine if the application is in maintenance mode...
|
||||||
* If the application is in maintenance / demo mode via the "down" command
|
|
||||||
* we will load this file so that any pre-rendered content can be shown
|
|
||||||
* instead of starting the framework, which could cause an exception.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||||
require $maintenance;
|
require $maintenance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
// Register the Composer autoloader...
|
||||||
* Composer provides a convenient, automatically generated class loader for
|
|
||||||
* this application. We just need to utilize it! We'll simply require it
|
|
||||||
* into the script here so we don't need to manually load our classes.
|
|
||||||
*/
|
|
||||||
|
|
||||||
require __DIR__.'/../vendor/autoload.php';
|
require __DIR__.'/../vendor/autoload.php';
|
||||||
|
|
||||||
/**
|
// Bootstrap Laravel and handle the request...
|
||||||
* Once we have the application, we can handle the incoming request using
|
(require_once __DIR__.'/../bootstrap/app.php')
|
||||||
* the application's HTTP kernel. Then, we will send the response back
|
->handleRequest(Request::capture());
|
||||||
* to this client's browser, allowing them to enjoy our application.
|
|
||||||
*/
|
|
||||||
|
|
||||||
$app = require_once __DIR__.'/../bootstrap/app.php';
|
|
||||||
|
|
||||||
$app->handleRequest(Request::capture());
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user