Web\Controller: initial commit

* 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.
This commit is contained in:
Thomas Gelf 2014-11-13 15:42:25 +01:00
parent 1c0e427d3b
commit 28c239c6fd
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?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
{
}