Skip to content

Commit 0d8043e

Browse files
committed
Refactors all bootstrap
1 parent ec956ef commit 0d8043e

File tree

5 files changed

+102
-47
lines changed

5 files changed

+102
-47
lines changed

application

+50-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,53 @@
11
#!/usr/bin/env php
22
<?php
33

4-
/**
5-
* Laravel Zero - An elegant starting point for your Laravel Console Application
6-
*
7-
* @package Laravel Zero
8-
* @author Nuno Maduro <[email protected]>
9-
*/
10-
11-
require_once __DIR__ . '/bootstrap/init.php';
4+
define('LARAVEL_START', microtime(true));
5+
6+
/*
7+
|--------------------------------------------------------------------------
8+
| Register The Auto Loader
9+
|--------------------------------------------------------------------------
10+
|
11+
| Composer provides a convenient, automatically generated class loader
12+
| for our application. We just need to utilize it! We'll require it
13+
| into the script here so that we do not have to worry about the
14+
| loading of any our classes "manually". Feels great to relax.
15+
|
16+
*/
17+
18+
$autoloader = require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php';
19+
20+
$app = require_once __DIR__.'/bootstrap/app.php';
21+
22+
/*
23+
|--------------------------------------------------------------------------
24+
| Run The Artisan Application
25+
|--------------------------------------------------------------------------
26+
|
27+
| When we run the console application, the current CLI command will be
28+
| executed in this console and the response sent back to a terminal
29+
| or another output device for the developers. Here goes nothing!
30+
|
31+
*/
32+
33+
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
34+
35+
$status = $kernel->handle(
36+
$input = new Symfony\Component\Console\Input\ArgvInput,
37+
new Symfony\Component\Console\Output\ConsoleOutput
38+
);
39+
40+
/*
41+
|--------------------------------------------------------------------------
42+
| Shutdown The Application
43+
|--------------------------------------------------------------------------
44+
|
45+
| Once Artisan has finished running, we will fire off the shutdown events
46+
| so that any final work may be done by the application before we shut
47+
| down the process. This is the last thing to happen to the request.
48+
|
49+
*/
50+
51+
$kernel->terminate($input, $status);
52+
53+
exit($status);

bootstrap/app.php

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php
2+
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Create The Application
6+
|--------------------------------------------------------------------------
7+
|
8+
| The first thing we will do is create a new Laravel application instance
9+
| which serves as the "glue" for all the components of Laravel, and is
10+
| the IoC container for the system binding all of the various parts.
11+
|
12+
*/
13+
14+
$app = new LaravelZero\Framework\Application(
15+
realpath(dirname(__DIR__))
16+
);
17+
18+
/*
19+
|--------------------------------------------------------------------------
20+
| Bind Important Interfaces
21+
|--------------------------------------------------------------------------
22+
|
23+
| Next, we need to bind some important interfaces into the container so
24+
| we will be able to resolve them when needed. The kernels serve the
25+
| incoming requests to this application from both the web and CLI.
26+
|
27+
*/
28+
29+
$app->singleton(
30+
Illuminate\Contracts\Console\Kernel::class,
31+
LaravelZero\Framework\Kernel::class
32+
);
33+
34+
$app->singleton(
35+
Illuminate\Contracts\Debug\ExceptionHandler::class,
36+
Illuminate\Foundation\Exceptions\Handler::class
37+
);
38+
39+
/*
40+
|--------------------------------------------------------------------------
41+
| Return The Application
42+
|--------------------------------------------------------------------------
43+
|
44+
| This script returns the application instance. The instance is given to
45+
| the calling script so we can separate the building of the instances
46+
| from the actual running of the application and sending responses.
47+
|
48+
*/
49+
50+
return $app;

bootstrap/autoload.php

-23
This file was deleted.

bootstrap/cache/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

bootstrap/init.php

-16
This file was deleted.

0 commit comments

Comments
 (0)