mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
upgrade php-cs-fixer to 3.47.0
This commit is contained in:
@@ -59,7 +59,7 @@ class PostalCode implements TrackUpdateInterface, TrackCreationInterface
|
||||
*
|
||||
* @groups({"read"})
|
||||
*/
|
||||
private ?\Chill\MainBundle\Doctrine\Model\Point $center = null;
|
||||
private ?Point $center = null;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", length=100)
|
||||
@@ -73,7 +73,7 @@ class PostalCode implements TrackUpdateInterface, TrackCreationInterface
|
||||
*
|
||||
* @groups({"write", "read"})
|
||||
*/
|
||||
private ?\Chill\MainBundle\Entity\Country $country = null;
|
||||
private ?Country $country = null;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="datetime_immutable", nullable=true, options={"default": null})
|
||||
|
@@ -84,7 +84,7 @@ class UserJobHistory
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setJob(?UserJob $job): UserJobHistory
|
||||
public function setJob(?UserJob $job): User\UserJobHistory
|
||||
{
|
||||
$this->job = $job;
|
||||
|
||||
@@ -98,7 +98,7 @@ class UserJobHistory
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setUser(User $user): UserJobHistory
|
||||
public function setUser(User $user): User\UserJobHistory
|
||||
{
|
||||
$this->user = $user;
|
||||
|
||||
|
@@ -84,7 +84,7 @@ class UserScopeHistory
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setScope(?Scope $scope): UserScopeHistory
|
||||
public function setScope(?Scope $scope): User\UserScopeHistory
|
||||
{
|
||||
$this->scope = $scope;
|
||||
|
||||
@@ -98,7 +98,7 @@ class UserScopeHistory
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setUser(User $user): UserScopeHistory
|
||||
public function setUser(User $user): User\UserScopeHistory
|
||||
{
|
||||
$this->user = $user;
|
||||
|
||||
|
Reference in New Issue
Block a user