blob: 2f2ebd88a2c3df28bc110b653bfd7b549f82e640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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();
}
|