Flip key value in $namespaces array
Key value should be other way around.
This commit is contained in:
parent
64ef89ce4c
commit
f9cf2b6a95
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ Configuration of this client works a little bit different:
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$namespaces = array(
|
$namespaces = array(
|
||||||
'MyProject\Entities' => '/path/to/files1',
|
'/path/to/files1' => 'MyProject\Entities',
|
||||||
'OtherProject\Entities' => '/path/to/files2'
|
'/path/to/files2' => 'OtherProject\Entities'
|
||||||
);
|
);
|
||||||
$driver = new \Doctrine\ORM\Mapping\Driver\SimplifiedXmlDriver($namespaces);
|
$driver = new \Doctrine\ORM\Mapping\Driver\SimplifiedXmlDriver($namespaces);
|
||||||
$driver->setGlobalBasename('global'); // global.orm.xml
|
$driver->setGlobalBasename('global'); // global.orm.xml
|
||||||
|
|
Loading…
Add table
Reference in a new issue