tags:

views:

60

answers:

1

when i use a Doctrine Model Doctrine cant find the BaseModel in the models/generated folder.

what should i put in the Doctrine bootstrap file to tell it they are in the models/generated folder?

thanks!

+1  A: 

The following line in my bootstrap file resolved this issue for me:

Doctrine_Core::loadModels('path/to/models/generated');
BenV