REFACTORING: framework cleanup, preparing for php7.4 and loading dependencies from composer

This commit is contained in:
Stephan Kasdorf
2019-11-03 22:06:50 +01:00
parent 236f94bb70
commit 70dccc3f15
615 changed files with 219 additions and 76798 deletions

29
core/a/controller.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
namespace Nibiru\Adapter;
/**
* User - stephan
* Date - 03.11.19
* Time - 18:50
* @author - Stephan Kasdorf
* @category - [PLEASE SPECIFIY]
* @license - BSD License
*/
use Nibiru\IController;
use Nibiru;
abstract class Controller extends Nibiru\Controller implements IController
{
/**
* This should be part of any extended controller
* class in order to implement a page structure
* @return array
*/
abstract public function pageAction();
/**
* This is the part where you can add titles to
* your page navigation.
*/
abstract public function navigationAction();
}