2017-07-14 13:21:42 +02:00

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__)
);
}
}