Tony Murray 46ca1fd45e Revert "Attempt to make proxy sub-dir -> app no subdir work" (#9341)
* Revert "Attempt to make proxy sub-dir -> app no subdir work (#9317)"

This reverts commit df850a3ed9c063c0ebe7de1293bdb6da4df258e9.
2018-10-18 09:15:48 -05:00

24 lines
680 B
PHP

<?php
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so we do not have to manually load any of
| our application's PHP classes. It just feels great to relax.
|
*/
@include __DIR__ . '/../vendor/autoload.php';
if (!class_exists(\App\Checks::class)) {
require __DIR__ . '/../app/Checks.php';
}
\App\Checks::postAutoload();