diff options
author | Marvin Borner | 2018-07-20 16:34:32 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-20 16:34:32 +0200 |
commit | 74cb1477bb921a2378ea22a552b71a48c11e0931 (patch) | |
tree | 621ab17315be667c16dad8f3d5f44d67a7a47e8f /public/index.php | |
parent | 400591b34d4b0a6288834539808a9dede8a60e3a (diff) |
Better API (integrated oauth completely)
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/public/index.php b/public/index.php index 4584cbc..c582053 100644 --- a/public/index.php +++ b/public/index.php @@ -4,11 +4,9 @@ * Laravel - A PHP Framework For Web Artisans * * @package Laravel - * @author Taylor Otwell <taylor@laravel.com> + * @author Taylor Otwell <taylorotwell@gmail.com> */ -define('LARAVEL_START', microtime(true)); - /* |-------------------------------------------------------------------------- | Register The Auto Loader @@ -17,11 +15,11 @@ define('LARAVEL_START', microtime(true)); | 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 great to relax. +| loading any of our classes later on. It feels nice to relax. | */ -require __DIR__.'/../vendor/autoload.php'; +require __DIR__.'/../bootstrap/autoload.php'; /* |-------------------------------------------------------------------------- |