blob: 9fafec9d5e5333ea6f8f6b4c4871a7031ff868d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/* Autoloader for hoa/compiler and its dependencies */
$vendor = '/usr/share/php';
// Dependencies
foreach ([
$vendor . '/Hoa/Consistency/autoload.php' => true,
$vendor . '/Hoa/Exception/autoload.php' => true,
$vendor . '/Hoa/File/autoload.php' => true,
$vendor . '/Hoa/Iterator/autoload.php' => true,
$vendor . '/Hoa/Math/autoload.php' => true,
$vendor . '/Hoa/Protocol/autoload.php' => true,
$vendor . '/Hoa/Regex/autoload.php' => true,
$vendor . '/Hoa/Visitor/autoload.php' => true,
] as $dep => $mandatory) {
if ($mandatory || file_exists($dep)) require_once($dep);
}
$fedoraHoaLoader->addNamespace('Hoa\\Compiler\\', __DIR__, true);
|