mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-28 18:43:49 +00:00
upgrade php-cs-fixer to 3.47.0
This commit is contained in:
@@ -35,12 +35,12 @@ class Event implements HasCenterInterface, HasScopeInterface
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\Center")
|
||||
*/
|
||||
private ?\Chill\MainBundle\Entity\Center $center = null;
|
||||
private ?Center $center = null;
|
||||
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\Scope")
|
||||
*/
|
||||
private ?\Chill\MainBundle\Entity\Scope $circle = null;
|
||||
private ?Scope $circle = null;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="datetime")
|
||||
@@ -59,7 +59,7 @@ class Event implements HasCenterInterface, HasScopeInterface
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\User")
|
||||
*/
|
||||
private ?\Chill\MainBundle\Entity\User $moderator = null;
|
||||
private ?User $moderator = null;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="string", length=150)
|
||||
@@ -78,7 +78,7 @@ class Event implements HasCenterInterface, HasScopeInterface
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Chill\EventBundle\Entity\EventType")
|
||||
*/
|
||||
private ?\Chill\EventBundle\Entity\EventType $type = null;
|
||||
private ?EventType $type = null;
|
||||
|
||||
/**
|
||||
* Event constructor.
|
||||
|
Reference in New Issue
Block a user