Rector changes and immplementations of required methods

This commit is contained in:
2025-05-22 17:47:07 +02:00
parent 053b92b77c
commit 17db59d221
1138 changed files with 2656 additions and 2616 deletions

View File

@@ -140,7 +140,7 @@ class AccompanyingPeriodWorkEvaluation implements TrackCreationInterface, TrackU
/**
* @return Collection<AccompanyingPeriodWorkEvaluationDocument>
*/
public function getDocuments()
public function getDocuments(): \Doctrine\Common\Collections\Collection
{
return $this->documents;
}

View File

@@ -84,7 +84,7 @@ class ClosingMotive
*
* @return int
*/
public function getId()
public function getId(): ?int
{
return $this->id;
}
@@ -94,7 +94,7 @@ class ClosingMotive
*
* @return array
*/
public function getName()
public function getName(): array
{
return $this->name;
}
@@ -107,7 +107,7 @@ class ClosingMotive
/**
* @return ClosingMotive
*/
public function getParent()
public function getParent(): ?\Chill\PersonBundle\Entity\AccompanyingPeriod\ClosingMotive
{
return $this->parent;
}