When I use Model::findFirst method, I get the Model object. When I use Model::find method, I get Phalcon\Mvc\Model\Resultset\Simple object. Is it any correct way to convert Phalcon\Mvc\Model\Resultset\Simple to Model[] (array of model) I try to do like:
return self::find([...])->filter(function ($child) {return $child;});
but I'm not sure that it's good way.