Files
librenms-librenms/bootstrap/autoload.php
T

23 lines
667 B
PHP
Raw Normal View History

2018-05-09 08:05:17 -05:00
<?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.
|
*/
2019-08-01 06:58:22 -05:00
@require_once __DIR__ . '/../app/Checks.php';
\App\Checks::preAutoload();
2018-05-09 08:05:17 -05:00
2019-08-01 06:58:22 -05:00
@include __DIR__ . '/../vendor/autoload.php';
2018-05-09 08:05:17 -05:00
\App\Checks::postAutoload();