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

@@ -64,7 +64,7 @@ class Report implements HasCenterInterface, HasScopeInterface
*
* @return array
*/
public function getCFData()
public function getCFData(): ?array
{
return $this->cFData;
}
@@ -74,7 +74,7 @@ class Report implements HasCenterInterface, HasScopeInterface
*
* @return CustomFieldsGroup
*/
public function getCFGroup()
public function getCFGroup(): ?\Chill\CustomFieldsBundle\Entity\CustomFieldsGroup
{
return $this->cFGroup;
}
@@ -92,7 +92,7 @@ class Report implements HasCenterInterface, HasScopeInterface
*
* @return int
*/
public function getId()
public function getId(): ?int
{
return $this->id;
}
@@ -102,7 +102,7 @@ class Report implements HasCenterInterface, HasScopeInterface
*
* @return Person
*/
public function getPerson()
public function getPerson(): ?\Chill\PersonBundle\Entity\Person
{
return $this->person;
}
@@ -112,7 +112,7 @@ class Report implements HasCenterInterface, HasScopeInterface
*
* @return Scope
*/
public function getScope()
public function getScope(): ?\Chill\MainBundle\Entity\Scope
{
return $this->scope;
}
@@ -122,7 +122,7 @@ class Report implements HasCenterInterface, HasScopeInterface
*
* @return User
*/
public function getUser()
public function getUser(): ?\Chill\MainBundle\Entity\User
{
return $this->user;
}