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

This commit is contained in:
osaajani 2021-07-19 20:55:45 +02:00
parent e957c9feb7
commit 169cbfde2d
1 changed files with 1 additions and 1 deletions

View File

@ -138,5 +138,5 @@ namespace controllers\internals;
/**
* Get the model for the Controller.
*/
abstract protected function get_model(): \models\StandardModel;
abstract protected function get_model();
}