symfony - Symfony2, where can I put a global class? -


i developing quit simple website, text. text need editable user, storing text in database. because of that, need access doctrine entity every bundle, need write entity ?

thank you

all entities accesible across app if you use namespaces.

just create it, example, @ your\whateverbundle\entity\myentity , in every controller must add: use your\whateverbundle\entity\myentity;

i think that's looking for, isn't it?


Comments