remove return type on get model to make it more widely compatible

This commit is contained in:
osaajani 2021-07-19 20:56:44 +02:00
parent 169cbfde2d
commit 3084288e5d
1 changed files with 2 additions and 0 deletions

View File

@ -137,6 +137,8 @@ namespace controllers\internals;
/**
* Get the model for the Controller.
*
* @return \models\StandardModel
*/
abstract protected function get_model();
}