aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorCamil Staps2016-09-25 23:56:46 +0200
committerCamil Staps2016-09-26 01:02:05 +0200
commit33ad0c14d168d36a4e7ad42dc6aa6a37a7335849 (patch)
tree0543b7d92f7f0b7706f4313ba10b18483f747798 /public
parentAdded unique visitors to statistics (diff)
Change from lumen 5.2 to laravel 5.3 (Resolves #1)
Diffstat (limited to 'public')
-rw-r--r--public/index.php42
-rw-r--r--public/js/moderators.js2
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();
}
}
});