Skip to content

Commit

Permalink
Change the global namespace to the module specific namespace
Browse files Browse the repository at this point in the history
refs #7642
  • Loading branch information
Alexander Fuhr committed Apr 20, 2015
1 parent 593ea7a commit c76e4e3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
@@ -1,10 +1,11 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Menu;
namespace Icinga\Module\Monitoring\Web\Menu;

use Icinga\Web\Menu as Menu;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
use Icinga\Web\Menu;
use Icinga\Web\Menu\MenuItemRenderer;
use Icinga\Web\Url;

class MonitoringMenuItemRenderer implements MenuItemRenderer {
Expand Down
@@ -1,7 +1,7 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Menu;
namespace Icinga\Module\Monitoring\Web\Menu;

class ProblemMenuItemRenderer extends MonitoringMenuItemRenderer
{
Expand Down
@@ -1,9 +1,7 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Menu;

use Icinga\Web\Menu;
namespace Icinga\Module\Monitoring\Web\Menu;

class UnhandledHostMenuItemRenderer extends MonitoringMenuItemRenderer
{
Expand Down
@@ -1,9 +1,7 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Menu;

use Icinga\Web\Menu;
namespace Icinga\Module\Monitoring\Web\Menu;

class UnhandledServiceMenuItemRenderer extends MonitoringMenuItemRenderer
{
Expand Down

0 comments on commit c76e4e3

Please sign in to comment.