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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user