|null * @readonly */ public $cascade; /** * The fetching strategy to use for the association. * * @var string * @psalm-var 'LAZY'|'EAGER'|'EXTRA_LAZY' * @readonly * @Enum({"LAZY", "EAGER", "EXTRA_LAZY"}) */ public $fetch = 'LAZY'; /** * @var bool * @readonly */ public $orphanRemoval = false; /** * @var string|null * @readonly */ public $indexBy; /** * @param class-string|null $targetEntity * @param string[]|null $cascade * @psalm-param 'LAZY'|'EAGER'|'EXTRA_LAZY' $fetch */ 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; } }