| 1 | <?php |
||
| 9 | class I { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var Config |
||
| 13 | */ |
||
| 14 | public static $cfg; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var Application |
||
| 18 | */ |
||
| 19 | public static $app; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Constructor. |
||
| 23 | */ |
||
| 24 | public static function init() { |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Configure and run the application. |
||
| 33 | */ |
||
| 34 | protected static function runApplication() { |
||
| 45 | } |
||
| 46 |