Revert "php style fixes"

This reverts commit 38fcccfd83.
This commit is contained in:
2024-04-24 10:09:25 +02:00
parent 38fcccfd83
commit 3929602f59
41 changed files with 642 additions and 217 deletions

View File

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

View File

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

View File

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

View File

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