mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-04 12:29:43 +00:00
Rector changes and immplementations of required methods
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user