Set active to false by default when creating season
dyb-tech.com/LaLiga-BackEnd/pipeline/head This commit looks good Details

This commit is contained in:
Daniel Guzman 2024-06-03 00:01:43 +02:00
parent fa24f75fea
commit 5758e7af43
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ class SeasonFactory
{
$seasonEntity->setPointsPerLoss($seasonDto->pointsPerLoss);
}
$seasonEntity->setActive(false);
return $seasonEntity;
}
}