Rename controller namespace to Controllers

refs #5786
This commit is contained in:
Eric Lippmann 2015-08-27 13:03:45 +02:00
parent f24449b225
commit 28009eb563
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */ /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Controller; namespace Icinga\Controllers;
use Exception; use Exception;
use Zend_Controller_Action_Exception; use Zend_Controller_Action_Exception;

View File

@ -23,7 +23,7 @@ class Dispatcher extends Zend_Controller_Dispatcher_Standard
* *
* @var string * @var string
*/ */
const CONTROLLER_NAMESPACE = 'Controller'; const CONTROLLER_NAMESPACE = 'Controllers';
/** /**
* Dispatch request to a controller and action * Dispatch request to a controller and action