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

@@ -446,7 +446,7 @@ class Address implements TrackCreationInterface, TrackUpdateInterface
return $this;
}
public function setLinkedToThirdParty(?\Chill\ThirdPartyBundle\Entity\ThirdParty $linkedToThirdParty): self
public function setLinkedToThirdParty(?ThirdParty $linkedToThirdParty): self
{
$this->linkedToThirdParty = $linkedToThirdParty;

View File

@@ -61,9 +61,6 @@ class CommentEmbeddable
$this->date = $date;
}
/**
* @param int $userId
*/
public function setUserId(?int $userId)
{
$this->userId = $userId;

View File

@@ -59,8 +59,6 @@ class Language
/**
* Set id.
*
* @param string $id
*
* @return Language
*/
public function setId(?string $id)

View File

@@ -157,8 +157,6 @@ class PostalCode implements TrackUpdateInterface, TrackCreationInterface
/**
* Set code.
*
* @param string $code
*
* @return PostalCode
*/
public function setCode(?string $code)
@@ -183,8 +181,6 @@ class PostalCode implements TrackUpdateInterface, TrackCreationInterface
/**
* Set name.
*
* @param string $name
*
* @return PostalCode
*/
public function setName(?string $name)
@@ -197,7 +193,6 @@ class PostalCode implements TrackUpdateInterface, TrackCreationInterface
/**
* Set origin.
*
*
* @return PostalCode
*/
public function setOrigin(int $origin)