Hi.
Since there isn't much documentation for Vokuro on Github or the docs.phalcon.io so i'll ask here.
I don't understand how Vokuro get it's information from the database, there must be some kind of queries in it.
https://github.com/phalcon/vokuro/blob/master/app/models/Users.php for example has multiple hasMany() functions but that doesn't make sense to me at all.
In the controller, https://github.com/phalcon/vokuro/blob/master/app/controllers/UsersController.php does it for example call this
$user = Users::findFirstById($id);
i guess it does something under the hood, but i don't get it.
help.