mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-29 04:39:07 +02:00
17 lines
297 B
PHP
17 lines
297 B
PHP
<?php
|
|
|
|
namespace ipl\Loader;
|
|
|
|
use Icinga\Application\ApplicationBootstrap;
|
|
|
|
class CompatLoader
|
|
{
|
|
public static function delegateLoadingToIcingaWeb(ApplicationBootstrap $app)
|
|
{
|
|
$app->getLoader()->registerNamespace(
|
|
'ipl',
|
|
dirname(__DIR__)
|
|
);
|
|
}
|
|
}
|