aboutsummaryrefslogtreecommitdiffstats
path: root/lib/pinq/App.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pinq/App.php')
-rw-r--r--lib/pinq/App.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/pinq/App.php b/lib/pinq/App.php
new file mode 100644
index 000000000..2f2ebd88a
--- /dev/null
+++ b/lib/pinq/App.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ *
+ * PHP version 5.4
+ *
+ * @category Mageia
+ * @package Mageia\Web\www\Pinq
+ * @author rda <rda@mageia.org>
+ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL-2+
+ * @link http://www.mageia.org/
+ *
+*/
+
+/**
+*/
+abstract class Pinq_App
+{
+ function __construct($controller, $options)
+ {
+ $this->_control = $controller;
+ $this->_options = $options;
+ }
+
+ abstract function run();
+} \ No newline at end of file