Rector changes + namespace changes

This commit is contained in:
2024-04-23 17:43:23 +02:00
parent 63fe8070c4
commit ed3e0f889e
116 changed files with 816 additions and 831 deletions

View File

@@ -1412,7 +1412,7 @@ class Person implements HasCenterInterface, TrackCreationInterface, TrackUpdateI
/**
* @param \DateTime $birthdate
*/
public function setBirthdate($birthdate): self
public function setBirthdate(?\DateTime $birthdate): self
{
$this->birthdate = $birthdate;
@@ -1527,7 +1527,7 @@ class Person implements HasCenterInterface, TrackCreationInterface, TrackUpdateI
return $this;
}
public function setFullnameCanonical($fullnameCanonical): self
public function setFullnameCanonical(?string $fullnameCanonical): self
{
$this->fullnameCanonical = $fullnameCanonical;