doctrine cant find my BaseModels in the models/generated folder
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?
thank开发者_如何转开发s!
The following line in my bootstrap file resolved this issue for me:
Doctrine_Core::loadModels('path/to/models/generated');
精彩评论