diff --git a/datamodels/2.x/combodo-data-feature-removal/src/Entity/DeletionPlanEntity.php b/datamodels/2.x/combodo-data-feature-removal/src/Entity/DeletionPlanEntity.php index bd001e0400..f56027d387 100644 --- a/datamodels/2.x/combodo-data-feature-removal/src/Entity/DeletionPlanEntity.php +++ b/datamodels/2.x/combodo-data-feature-removal/src/Entity/DeletionPlanEntity.php @@ -12,17 +12,12 @@ class DeletionPlanEntity public readonly DeletionPlanItem $oDelete; public readonly DeletionPlanItem $oUpdate; public readonly DeletionPlanItem $oIssue; - - /** - * @param \Combodo\iTop\DataFeatureRemoval\Entity\DeletionPlanItem $oDelete - * @param \Combodo\iTop\DataFeatureRemoval\Entity\DeletionPlanItem $oUpdate - * @param \Combodo\iTop\DataFeatureRemoval\Entity\DeletionPlanItem $oIssue - */ + public function __construct() { - $this->oDelete = $oDelete ?? new DeletionPlanItem(); - $this->oUpdate = $oUpdate ?? new DeletionPlanItem(); - $this->oIssue = $oIssue ?? new DeletionPlanItem(); + $this->oDelete = new DeletionPlanItem(); + $this->oUpdate = new DeletionPlanItem(); + $this->oIssue = new DeletionPlanItem(); } public function TotalCount(): int