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

@@ -41,7 +41,7 @@ class Report implements HasCenterInterface, HasScopeInterface
* @ORM\ManyToOne(
* targetEntity="Chill\CustomFieldsBundle\Entity\CustomFieldsGroup")
*/
private ?\Chill\CustomFieldsBundle\Entity\CustomFieldsGroup $cFGroup = null;
private ?CustomFieldsGroup $cFGroup = null;
/**
* @ORM\Column(type="datetime")
@@ -60,17 +60,17 @@ class Report implements HasCenterInterface, HasScopeInterface
/**
* @ORM\ManyToOne(targetEntity="Chill\PersonBundle\Entity\Person")
*/
private ?\Chill\PersonBundle\Entity\Person $person = null;
private ?Person $person = null;
/**
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\Scope")
*/
private ?\Chill\MainBundle\Entity\Scope $scope = null;
private ?Scope $scope = null;
/**
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\User")
*/
private ?\Chill\MainBundle\Entity\User $user = null;
private ?User $user = null;
/**
* @return Center

View File

@@ -28,7 +28,7 @@ final class TimelineProviderTest extends WebTestCase
{
private static ?object $em = null;
private \Chill\PersonBundle\Entity\Person $person;
private Person $person;
/**
* @var Report

View File

@@ -22,7 +22,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/
class Version20150622233319 extends AbstractMigration implements ContainerAwareInterface
{
private ?\Symfony\Component\DependencyInjection\ContainerInterface $container = null;
private ?ContainerInterface $container = null;
public function down(Schema $schema): void
{