upgrade php-cs-fixer to 3.47.0

This commit is contained in:
2024-01-22 12:14:39 +01:00
parent fdfc3fb7ec
commit 27ce322690
58 changed files with 114 additions and 113 deletions

View File

@@ -37,7 +37,7 @@ class Participation implements \ArrayAccess, HasCenterInterface, HasScopeInterfa
* targetEntity="Chill\EventBundle\Entity\Event",
* inversedBy="participations")
*/
private ?\Chill\EventBundle\Entity\Event $event = null;
private ?Event $event = null;
/**
* @ORM\Id
@@ -56,17 +56,17 @@ class Participation implements \ArrayAccess, HasCenterInterface, HasScopeInterfa
/**
* @ORM\ManyToOne(targetEntity="Chill\PersonBundle\Entity\Person")
*/
private ?\Chill\PersonBundle\Entity\Person $person = null;
private ?Person $person = null;
/**
* @ORM\ManyToOne(targetEntity="Chill\EventBundle\Entity\Role")
*/
private ?\Chill\EventBundle\Entity\Role $role = null;
private ?Role $role = null;
/**
* @ORM\ManyToOne(targetEntity="Chill\EventBundle\Entity\Status")
*/
private ?\Chill\EventBundle\Entity\Status $status = null;
private ?Status $status = null;
/**
* @return Center