Hi - No this is not the question.
In zf2 I have the following folder structure:
/app/module/Application/Entity/SomeEntity.php
/app/module/User/UserEntity.php
/app/module/skipper.file
/app/vendor/toolbbox/module/Entity/CountriesEntity.php
The skipper gui builds associations in the module directory only:
UserEntity.php -> SomeEntity.php
UserEntity.php -> SomeOtherEntity.php
In the gui I do not have the vendor folder Entity listed... since it is a third party and I can not modify it.
I still however wish to create an association from my UserEntity.php -> CountriesEntity.php so that I have the correct annotations in the user entity:
/**
* @ORM\ManyToOne(targetEntity="ToolBox\Entity\Countries", inversedBy="user", cascade={"persist"})
* @ORM\JoinColumn(name="country_id", referencedColumnName="id")
* @var Collection
* @access private
*/
private $country;
I do not see anyway of doing this in Skipper... and when I add the annotations manually, they get erased.
Essentially I want to skipper to manage UserEntity and ignore Countries Entity.
Hopw that helps.