diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/index.php | 42 | ||||
-rw-r--r-- | public/js/moderators.js | 2 |
2 files changed, 37 insertions, 7 deletions
diff --git a/public/index.php b/public/index.php index 04aa086..716731f 100644 --- a/public/index.php +++ b/public/index.php @@ -1,17 +1,39 @@ <?php +/** + * Laravel - A PHP Framework For Web Artisans + * + * @package Laravel + * @author Taylor Otwell <taylor@laravel.com> + */ + +/* +|-------------------------------------------------------------------------- +| Register The Auto Loader +|-------------------------------------------------------------------------- +| +| Composer provides a convenient, automatically generated class loader for +| our application. We just need to utilize it! We'll simply require it +| into the script here so that we don't have to worry about manual +| loading any of our classes later on. It feels nice to relax. +| +*/ + +require __DIR__.'/../bootstrap/autoload.php'; + /* |-------------------------------------------------------------------------- -| Create The Application +| Turn On The Lights |-------------------------------------------------------------------------- | -| First we need to get an application instance. This creates an instance -| of the application / container and bootstraps the application so it -| is ready to receive HTTP / Console requests from the environment. +| We need to illuminate PHP development, so let us turn on the lights. +| This bootstraps the framework and gets it ready for use, then it +| will load up this application so that we can run it and send +| the responses back to the browser and delight our users. | */ -$app = require __DIR__.'/../bootstrap/app.php'; +$app = require_once __DIR__.'/../bootstrap/app.php'; /* |-------------------------------------------------------------------------- @@ -25,4 +47,12 @@ $app = require __DIR__.'/../bootstrap/app.php'; | */ -$app->run(); +$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); + +$response = $kernel->handle( + $request = Illuminate\Http\Request::capture() +); + +$response->send(); + +$kernel->terminate($request, $response); diff --git a/public/js/moderators.js b/public/js/moderators.js index 10dd2a0..36ec3ed 100644 --- a/public/js/moderators.js +++ b/public/js/moderators.js @@ -54,7 +54,7 @@ $(document).ready(function(){ if (data.accepted) { alert('This verb has now been accepted!'); - container.parent().remove(); + container.remove(); } } }); |