implementing abstract classes for QuesttypeAgents (-Agent, -Controller, -Model and -View)
This commit is contained in:
parent
e90d0e5915
commit
41f64d48be
13 changed files with 1165 additions and 6 deletions
|
|
@ -30,7 +30,7 @@
|
|||
*
|
||||
* @var View
|
||||
*/
|
||||
private $view = null;
|
||||
protected $view = null;
|
||||
/**
|
||||
* Data to pass to the View
|
||||
*
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
* @throws ModelNotValidException
|
||||
* @throws ModelNotFoundException
|
||||
*/
|
||||
private function loadModels()
|
||||
protected function loadModels()
|
||||
{
|
||||
// Determine Models
|
||||
$explicit = false;
|
||||
|
|
@ -403,7 +403,7 @@
|
|||
* @param string $layoutName Name of the current Layout
|
||||
* @param string $action Current Action
|
||||
*/
|
||||
private function loadView($layoutName, $action)
|
||||
protected function loadView($layoutName, $action)
|
||||
{
|
||||
// Check Layout name
|
||||
if(is_null($layoutName)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue