mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Revert "Attempt to make proxy sub-dir -> app no subdir work (#9317)" This reverts commit df850a3ed9c063c0ebe7de1293bdb6da4df258e9.
24 lines
680 B
PHP
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();
|