Fix missing Icinga\Application\Logger import in module manager

refs #4530
This commit is contained in:
Jannis Moßhammer 2013-08-14 12:53:20 +02:00 committed by Eric Lippmann
parent 392e568bf8
commit d604b01349
2 changed files with 10 additions and 9 deletions

View File

@ -4,11 +4,12 @@
namespace Icinga\Application\Modules;
use Icinga\Application\ApplicationBootstrap;
use Icinga\Application\Icinga;
use Icinga\Exception\ConfigurationError;
use Icinga\Exception\SystemPermissionException;
use Icinga\Exception\ProgrammingError;
use \Icinga\Application\ApplicationBootstrap;
use \Icinga\Application\Icinga;
use \Icinga\Application\Logger;
use \Icinga\Exception\ConfigurationError;
use \Icinga\Exception\SystemPermissionException;
use \Icinga\Exception\ProgrammingError;
/**
* Module manager that handles detecting, enabling and disabling of modules

View File

@ -28,11 +28,11 @@
namespace Icinga\Application\Modules;
use Icinga\Application\ApplicationBootstrap;
use \Icinga\Application\ApplicationBootstrap;
use \Icinga\Application\Config;
use Icinga\Application\Icinga;
use Icinga\Web\Hook;
use Zend_Controller_Router_Route as Route;
use \Icinga\Application\Icinga;
use \Icinga\Web\Hook;
use \Zend_Controller_Router_Route as Route;
/**
* Module handling