There is an update:
- The _source and _schema properties have been moved from Phalcon\Mvc\Model to Phalcon\Mvc\Model\Manager. This allow set source/schema in the model initializer
But method Model::setSource() which can be used in initialize() is deprecated. Also the method Model::setModelSource(string $source) is undefined. But, by analogy for Model\Manager::setConnectionService (Phalcon\Mvc\ModelInterface $model, string $connectionService) and others, it should represents Model\Manager::setModelSource (Phalcon\Mvc\Model $model, string $source) and be able to use in initializer.
So what exactly this update doing and how to use it in practice?