Rector: apply rules for doctrine code quality

This commit is contained in:
2023-08-31 10:35:52 +02:00
parent bc9b7b1776
commit e4e52234ad
32 changed files with 74 additions and 92 deletions

View File

@@ -51,21 +51,21 @@ class PersonHouseholdAddress
* @ORM\ManyToOne(targetEntity=Address::class)
* @ORM\JoinColumn(nullable=false)
*/
private $address;
private ?\Chill\MainBundle\Entity\Address $address = null;
/**
* @ORM\Id
* @ORM\ManyToOne(targetEntity=Household::class)
* @ORM\JoinColumn(nullable=false)
*/
private $household;
private ?\Chill\PersonBundle\Entity\Household\Household $household = null;
/**
* @ORM\Id
* @ORM\ManyToOne(targetEntity=Person::class)
* @ORM\JoinColumn(nullable=false)
*/
private $person;
private ?\Chill\PersonBundle\Entity\Person $person = null;
/**
* @ORM\Column(type="date_immutable")