mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-03-11 02:10:37 -04:00
* 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.
14 lines
334 B
PHP
14 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
|
|
{
|
|
}
|