mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-28 18:43:49 +00:00
apply rector rules
This commit is contained in:
@@ -33,22 +33,19 @@ use Traversable;
|
||||
class Event implements HasCenterInterface, HasScopeInterface
|
||||
{
|
||||
/**
|
||||
* @var Center
|
||||
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\Center")
|
||||
*/
|
||||
private $center;
|
||||
private ?\Chill\MainBundle\Entity\Center $center = null;
|
||||
|
||||
/**
|
||||
* @var Scope
|
||||
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\Scope")
|
||||
*/
|
||||
private $circle;
|
||||
private ?\Chill\MainBundle\Entity\Scope $circle = null;
|
||||
|
||||
/**
|
||||
* @var DateTime
|
||||
* @ORM\Column(type="datetime")
|
||||
*/
|
||||
private $date;
|
||||
private ?\DateTime $date = null;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
@@ -80,10 +77,9 @@ class Event implements HasCenterInterface, HasScopeInterface
|
||||
private Collection $participations;
|
||||
|
||||
/**
|
||||
* @var EventType
|
||||
* @ORM\ManyToOne(targetEntity="Chill\EventBundle\Entity\EventType")
|
||||
*/
|
||||
private $type;
|
||||
private ?\Chill\EventBundle\Entity\EventType $type = null;
|
||||
|
||||
/**
|
||||
* Event constructor.
|
||||
|
Reference in New Issue
Block a user