|null */ public $joinColumns; /** * The join column that is being mapped to the persistent attribute. * * @var array<\Doctrine\ORM\Mapping\JoinColumn>|null */ public $inverseJoinColumns; /** * The join table that maps the relationship. * * @var \Doctrine\ORM\Mapping\JoinTable|null */ public $joinTable; /** * The name of the association-field on the inverse-side. * * @var ?string */ public $inversedBy; /** * The fetching strategy to use for the association. * * @var ?string * @Enum({"LAZY", "EAGER", "EXTRA_LAZY"}) */ public $fetch; /** * @param JoinColumn|array $joinColumns * @param JoinColumn|array $inverseJoinColumns */ public function __construct( string $name, $joinColumns = null, $inverseJoinColumns = null, ?JoinTable $joinTable = null, ?string $inversedBy = null, ?string $fetch = null ) { if ($joinColumns instanceof JoinColumn) { $joinColumns = [$joinColumns]; } if ($inverseJoinColumns instanceof JoinColumn) { $inverseJoinColumns = [$inverseJoinColumns]; } $this->name = $name; $this->joinColumns = $joinColumns; $this->inverseJoinColumns = $inverseJoinColumns; $this->joinTable = $joinTable; $this->inversedBy = $inversedBy; $this->fetch = $fetch; } }