referencedTable = $refTable; $this->referencedColumn = $refColumn; $this->strategy = $strategy; } public function getReferencedTable(): string { return $this->referencedTable; } public function getReferencedColumn(): string { return $this->referencedColumn; } public function onDelete(): ?Strategy { return $this->strategy; } }