*/ public $cascade; /** * The fetching strategy to use for the association. * * @var string * @Enum({"LAZY", "EAGER", "EXTRA_LAZY"}) */ public $fetch = 'LAZY'; /** @var bool */ public $orphanRemoval = false; /** @var string */ public $indexBy; /** * @param class-string|null $targetEntity * @param string[]|null $cascade */ public function __construct( ?string $mappedBy = null, ?string $targetEntity = null, ?array $cascade = null, string $fetch = 'LAZY', bool $orphanRemoval = false, ?string $indexBy = null ) { $this->mappedBy = $mappedBy; $this->targetEntity = $targetEntity; $this->cascade = $cascade; $this->fetch = $fetch; $this->orphanRemoval = $orphanRemoval; $this->indexBy = $indexBy; } }