Fixing some PHP strict complain

This commit is contained in:
ohartl 2016-05-10 00:21:17 +02:00
parent ecd556cdba
commit f50b8e1360

View file

@ -30,7 +30,10 @@ abstract class AbstractModel
/**
* Initialize Model
*/
abstract protected static function initModel();
protected static function initModel()
{
}
/**