mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-03-12 17:07:45 +00:00
Rector changes and immplementations of required methods
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user