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

@@ -39,14 +39,14 @@ abstract class AbstractTask implements HasCenterInterface, HasScopeInterface
*
* @Serializer\Groups({"read"})
*/
private ?\Chill\MainBundle\Entity\User $assignee = null;
private ?User $assignee = null;
/**
* @ORM\ManyToOne(
* targetEntity="\Chill\MainBundle\Entity\Scope"
* )
*/
private ?\Chill\MainBundle\Entity\Scope $circle = null;
private ?Scope $circle = null;
/**
* @ORM\Column(name="closed", type="boolean", options={ "default": false })
@@ -60,7 +60,7 @@ abstract class AbstractTask implements HasCenterInterface, HasScopeInterface
*
* @Serializer\Groups({"read"})
*/
private ?\Chill\PersonBundle\Entity\AccompanyingPeriod $course = null;
private ?AccompanyingPeriod $course = null;
/**
* @ORM\Column(name="current_states", type="json", options={"jsonb"=true, "default"="[]"})
@@ -83,7 +83,7 @@ abstract class AbstractTask implements HasCenterInterface, HasScopeInterface
*
* @Serializer\Groups({"read"})
*/
private ?\Chill\PersonBundle\Entity\Person $person = null;
private ?Person $person = null;
/**
* @ORM\Column(name="title", type="text")

View File

@@ -71,7 +71,7 @@ class SingleTask extends AbstractTask
* inversedBy="singleTasks"
* )
*/
private ?\Chill\TaskBundle\Entity\RecurringTask $recurringTask = null;
private ?RecurringTask $recurringTask = null;
/**
* @ORM\Column(name="start_date", type="date", nullable=true)

View File

@@ -26,7 +26,7 @@ class AbstractTaskPlaceEvent
* targetEntity="\Chill\MainBundle\Entity\User"
* )
*/
private ?\Chill\MainBundle\Entity\User $author = null;
private ?User $author = null;
/**
* @ORM\Column(name="data", type="json")

View File

@@ -48,7 +48,7 @@ class SingleTaskPlaceEvent extends AbstractTaskPlaceEvent
* inversedBy="taskPlaceEvents"
* )
*/
protected ?\Chill\TaskBundle\Entity\SingleTask $task = null;
protected ?SingleTask $task = null;
public function getTask(): SingleTask
{