Hi everybody !
first of all, sorry in advance for my poor English...
I'm trying the inheritance of Models in Phalcon, but it don't work...
Explanation :
1 model named 'Entity' 1 model named 'User'
a User is an Entity, so the 'Entity' class is th mother of the 'User' class
the problem with an exemple :
$u = User::findFirst('identifiant = "toto"'); works for the User's datas, but don't retrieve the Entity's datas of this User...
How can we make the link between a Model mother class and his Model Child ?