15 lines
334 B
PHP
15 lines
334 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Web;
|
||
|
|
||
|
use Icinga\Web\Controller\ModuleActionController;
|
||
|
|
||
|
/**
|
||
|
* This is the controller all modules should inherit from
|
||
|
* We will flip code with the ModuleActionController as soon as a couple
|
||
|
* of pending feature branches are merged back to the master.
|
||
|
*/
|
||
|
class Controller extends ModuleActionController
|
||
|
{
|
||
|
}
|