php cs fixes

This commit is contained in:
2024-04-24 10:16:54 +02:00
parent 20b38af812
commit e312929d86
41 changed files with 216 additions and 641 deletions

View File

@@ -55,14 +55,14 @@ class PersonDocument extends Document implements HasCenterInterface, HasScopeInt
return $this->scope;
}
public function setPerson(\Chill\PersonBundle\Entity\Person $person): self
public function setPerson(Person $person): self
{
$this->person = $person;
return $this;
}
public function setScope(?\Chill\MainBundle\Entity\Scope $scope): self
public function setScope(?Scope $scope): self
{
$this->scope = $scope;