Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | /** |
3 | * Jingga |
4 | * |
5 | * PHP Version 8.1 |
6 | * |
7 | * @package Karaka |
8 | * @copyright Dennis Eichhorn |
9 | * @license OMS License 2.0 |
10 | * @version 1.0.0 |
11 | * @link https://jingga.app |
12 | */ |
13 | declare(strict_types=1); |
14 | |
15 | // @codeCoverageIgnoreStart |
16 | require_once __DIR__ . '/Preloader.php'; |
17 | |
18 | $preloader = new \phpOMS\Preloader(); |
19 | |
20 | $preloader->includePath(__DIR__ . '/Account') |
21 | ->includePath(__DIR__ . '/Asset') |
22 | ->includePath(__DIR__ . '/Auth') |
23 | ->includePath(__DIR__ . '/Cache') |
24 | ->includePath(__DIR__ . '/Config') |
25 | ->includePath(__DIR__ . '/Contract') |
26 | ->includePath(__DIR__ . '/DataStorage') |
27 | ->includePath(__DIR__ . '/Dispatcher') |
28 | ->includePath(__DIR__ . '/Event') |
29 | ->includePath(__DIR__ . '/Localization') |
30 | ->includePath(__DIR__ . '/Log') |
31 | ->includePath(__DIR__ . '/Message') |
32 | ->includePath(__DIR__ . '/Model') |
33 | ->includePath(__DIR__ . '/Module') |
34 | ->includePath(__DIR__ . '/Router') |
35 | ->includePath(__DIR__ . '/Stdlib') |
36 | ->includePath(__DIR__ . '/Uri') |
37 | ->includePath(__DIR__ . '/Views') |
38 | ->load(); |
39 | // @codeCoverageIgnoreEnd |