-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
autoload.php
42 lines (38 loc) · 1.25 KB
/
autoload.php
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
40
41
42
<?php
/**
* This file is part of prolic/fpp.
* (c) 2018-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
$autoloadFiles = [
__DIR__ . '/src/Argument.php',
__DIR__ . '/src/Configuration.php',
__DIR__ . '/src/Definition.php',
__DIR__ . '/src/Namespace_.php',
__DIR__ . '/src/Parser.php',
__DIR__ . '/src/Type.php',
__DIR__ . '/src/TypeConfiguration.php',
__DIR__ . '/src/TypeTrait.php',
__DIR__ . '/src/Functions/basic_parser.php',
__DIR__ . '/src/Functions/fpp_parser.php',
__DIR__ . '/src/Functions/fpp.php',
__DIR__ . '/src/Functions/scan.php',
__DIR__ . '/src/Type/Bool_.php',
__DIR__ . '/src/Type/Command.php',
__DIR__ . '/src/Type/Data.php',
__DIR__ . '/src/Type/DateTimeImmutable.php',
__DIR__ . '/src/Type/Enum.php',
__DIR__ . '/src/Type/Event.php',
__DIR__ . '/src/Type/Float_.php',
__DIR__ . '/src/Type/Int_.php',
__DIR__ . '/src/Type/Marker.php',
__DIR__ . '/src/Type/String_.php',
__DIR__ . '/src/Type/Uuid.php',
__DIR__ . '/src/Type/Guid.php',
];
foreach ($autoloadFiles as $f) {
require_once $f;
}