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

@@ -271,7 +271,7 @@ class ThirdParty implements TrackCreationInterface, TrackUpdateInterface, \Strin
return $this;
}
public function addCenter(Center $center)
public function addCenter(Center $center): void
{
if (false === $this->centers->contains($center)) {
$this->centers->add($center);
@@ -519,7 +519,7 @@ class ThirdParty implements TrackCreationInterface, TrackUpdateInterface, \Strin
return $this;
}
public function removeCenter(Center $center)
public function removeCenter(Center $center): void
{
if ($this->centers->contains($center)) {
$this->centers->removeElement($center);