Commit 29fc9f69 authored by Taylor Otwell's avatar Taylor Otwell

Working on more Stacky setup.

parent 39e265f0
...@@ -29,8 +29,6 @@ require __DIR__.'/bootstrap/autoload.php'; ...@@ -29,8 +29,6 @@ require __DIR__.'/bootstrap/autoload.php';
$app = require_once __DIR__.'/bootstrap/start.php'; $app = require_once __DIR__.'/bootstrap/start.php';
$app->boot();
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Load The Artisan Console Application | Load The Artisan Console Application
...@@ -43,6 +41,8 @@ $app->boot(); ...@@ -43,6 +41,8 @@ $app->boot();
| |
*/ */
$app->setRequestForConsoleEnvironment();
$artisan = Illuminate\Console\Application::start($app); $artisan = Illuminate\Console\Application::start($app);
/* /*
......
...@@ -13,8 +13,6 @@ ...@@ -13,8 +13,6 @@
$app = new Illuminate\Foundation\Application; $app = new Illuminate\Foundation\Application;
$app->redirectIfTrailingSlash();
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Detect The Application Environment | Detect The Application Environment
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
"keywords": ["framework", "laravel"], "keywords": ["framework", "laravel"],
"license": "MIT", "license": "MIT",
"require": { "require": {
"laravel/framework": "4.1.*" "laravel/framework": "4.1.*",
"stack/builder": "dev-master"
}, },
"autoload": { "autoload": {
"classmap": [ "classmap": [
......
...@@ -34,6 +34,21 @@ require __DIR__.'/../bootstrap/autoload.php'; ...@@ -34,6 +34,21 @@ require __DIR__.'/../bootstrap/autoload.php';
$app = require_once __DIR__.'/../bootstrap/start.php'; $app = require_once __DIR__.'/../bootstrap/start.php';
/*
|--------------------------------------------------------------------------
| Capture The Request
|--------------------------------------------------------------------------
|
| Next we will capture the HTTP request into an instance of the Symfony
| request class. We will then pass that to a Laravel application for
| processing and return the response we receive back from the app.
|
*/
use Symfony\Component\HttpFoundation\Request;
$request = Request::createFromGlobals();
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Run The Application | Run The Application
...@@ -42,21 +57,39 @@ $app = require_once __DIR__.'/../bootstrap/start.php'; ...@@ -42,21 +57,39 @@ $app = require_once __DIR__.'/../bootstrap/start.php';
| Once we have the application, we can simply call the run method, | Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to | which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative | the client's browser allowing them to enjoy the creative
| and wonderful applications we have created for them. | and wonderful application we have whipped up for them.
| |
*/ */
$app->run(); $response = with(new Stack\Builder)
->push('Illuminate\Foundation\TrailingSlashRedirector')
->resolve($app)
->handle($request);
/*
|--------------------------------------------------------------------------
| Close The Application & Send Response
|--------------------------------------------------------------------------
|
| When closing the application, the session cookies will be set on the
| request. Also, this is an opportunity to finish up any other work
| that needs to be done before sending this response to browsers.
|
*/
$app->callCloseCallbacks($request, $response);
$response->send();
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Shutdown The Application | Shutdown The Application
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Once the app has finished running, we will fire off the shutdown events | Once the app has finished running we'll fire off the shutdown events
| so that any final work may be done by the application before we shut | so that any end work may be done by an application before we shut
| down the process. This is the last thing to happen to the request. | off the process. This is the final thing to happen to requests.
| |
*/ */
$app->shutdown(); $app->terminate($request, $response);
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment