-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreload.php
More file actions
executable file
·39 lines (36 loc) · 1.05 KB
/
preload.php
File metadata and controls
executable file
·39 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Jingga
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
// @codeCoverageIgnoreStart
require_once __DIR__ . '/Preloader.php';
$preloader = new \phpOMS\Preloader();
$preloader->includePath(__DIR__ . '/Account')
->includePath(__DIR__ . '/Asset')
->includePath(__DIR__ . '/Auth')
->includePath(__DIR__ . '/Cache')
->includePath(__DIR__ . '/Config')
->includePath(__DIR__ . '/Contract')
->includePath(__DIR__ . '/DataStorage')
->includePath(__DIR__ . '/Dispatcher')
->includePath(__DIR__ . '/Event')
->includePath(__DIR__ . '/Localization')
->includePath(__DIR__ . '/Log')
->includePath(__DIR__ . '/Message')
->includePath(__DIR__ . '/Model')
->includePath(__DIR__ . '/Module')
->includePath(__DIR__ . '/Router')
->includePath(__DIR__ . '/Stdlib')
->includePath(__DIR__ . '/Uri')
->includePath(__DIR__ . '/Views')
->load();
// @codeCoverageIgnoreEnd