<div dir="ltr"><div>Dear Team IXP Manager, </div><div>I am currently working to figure out doctrine ORM configuration in IXP Manager. The code has been written very deeply, it's very challenging.</div><div><br></div><div>Right now, I am facing one challenge to create <b>Entity</b>, <b>Repository</b> <i>classes</i> in the <u><b>IXP Manager Database</b></u> main folders. Although, I have read Doctrine ORM official documentation to grasp the main concepts thoroughly, and it looks very simple to start, but more care is needed to handle it so that it can not affect the other modules of the project.</div><div><br></div><div>I am going to attach the entity class for the faucet controller whose metadata has been written in the XML file. The IXP Manager's default approach is XML, given entities related information in XML format. The default path for the entities folder as written in <u><b>doctrine.php</b></u> file is:</div><div><br></div><div>'managers'                  => [<br>        'default' => [<br>            'dev'        => env('APP_DEBUG'),<br>            'meta'       => env('DOCTRINE_METADATA', '<b>xml</b>'),<br>            'connection' => env('DB_CONNECTION', 'mysql'),<br>            'namespaces' => [<br>                'IXP',<br>            ],<br>           <b> 'paths'      => [<br>                database_path('xml')</b><br>            ],<br>            'repository' => Doctrine\ORM\EntityRepository::class,<br>            'proxies'    => [<br>                'namespace'     => 'Proxies',<br>                'path'          => database_path('Proxies'),<br>                'auto_generate' => env('DOCTRINE_PROXY_AUTOGENERATE', false)<br>            ],<br></div><div><br></div><div>The problem is when I run the following command at terminal, it gives me the error (Please see attachment - Doctrine Entity Error.png).</div><div><br></div><div><span style="font-family:"arial narrow",sans-serif"><i>php artisan doctrine:schema:validate</i></span><br></div><div><br></div><div>In MappingException.php line 96:<br>                                          <br>  Class 'Entities\Faucet' does not exist.</div><div><br></div><div>What does this means is that it is searching <span style="font-family:"arial narrow",sans-serif">Faucet Entity File</span> in <u><b>app/Entities</b></u> folder, which is totally wrong according to its current configuration as you can see its default route is <b>database_path('xml')</b>.</div><div><br></div><div>Would you please share this with the concerned developers of IXP Manager, so that we can move forward for further developments.<br><br>Regards,<br>Saboor</div></div>