views:

21

answers:

0

I have the following entities:

User
Admin : Inherits User
Rules (relation: Rules * <-> 1 User)

I can access $user['Rules'] to get a Doctrine collection for Rules. However $admin['Rules'] does not return anything. (No error either, normally a Unknown related component 'Rules' error would be thrown.

Any help would be greatly appreciated!