fix cs with php-cs-fixer 3.49

This commit is contained in:
2024-02-07 15:38:56 +01:00
parent 86613a9be9
commit 4bbad4fc61
4 changed files with 6 additions and 6 deletions

View File

@@ -64,7 +64,7 @@ class AccompanyingPeriodStepHistory implements TrackCreationInterface, TrackUpda
*
* @ORM\JoinColumn(nullable=true)
*/
private ?AccompanyingPeriod\ClosingMotive $closingMotive = null;
private ?ClosingMotive $closingMotive = null;
public function getEndDate(): ?\DateTimeImmutable
{
@@ -122,12 +122,12 @@ class AccompanyingPeriodStepHistory implements TrackCreationInterface, TrackUpda
return $this;
}
public function getClosingMotive(): ?AccompanyingPeriod\ClosingMotive
public function getClosingMotive(): ?ClosingMotive
{
return $this->closingMotive;
}
public function setClosingMotive(?AccompanyingPeriod\ClosingMotive $closingMotive): self
public function setClosingMotive(?ClosingMotive $closingMotive): self
{
$this->closingMotive = $closingMotive;