Good morning, I'm starting in Doctrine 2.4 and I'm developing a system where I separate core files from application files, as follows:
/root |-- /src |-- /App |-- /Model |-- **(Entidades da Aplicação)** |-- /Core |-- /Model |-- **(Entidades do Core)**
The Doctrine documentation shows the following way to set up 1 directory for Entitys:
$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__."/src"), $isDevMode);
But how do I configure when I have more than 1 directory that will contain the Entitys of my application, as my example?