From 28c239c6fd6d5ce28386a34f96d0d14b8af5e8ef Mon Sep 17 00:00:00 2001
From: Thomas Gelf <thomas@gelf.net>
Date: Thu, 13 Nov 2014 15:42:25 +0100
Subject: [PATCH] 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.
---
 library/Icinga/Web/Controller.php | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 library/Icinga/Web/Controller.php

diff --git a/library/Icinga/Web/Controller.php b/library/Icinga/Web/Controller.php
new file mode 100644
index 000000000..111ee244c
--- /dev/null
+++ b/library/Icinga/Web/Controller.php
@@ -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
+{
+}