apply more cs rules for php-cs

This commit is contained in:
2023-10-17 13:27:03 +02:00
parent 0b0cbed9db
commit bc2041cbdd
1485 changed files with 8169 additions and 9620 deletions

View File

@@ -18,31 +18,30 @@ use Symfony\Component\Serializer\Annotation\Groups;
* PersonAltName.
*
* @ORM\Table(name="chill_person_alt_name")
*
* @ORM\Entity
*/
class PersonAltName
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
*
* @ORM\Id
*
* @ORM\GeneratedValue(strategy="AUTO")
*/
private ?int $id = null;
/**
* @var string
*
* @ORM\Column(name="key", type="string", length=255)
*
* @Groups({"write"})
*/
private ?string $key = null;
/**
* @var string
*
* @ORM\Column(name="label", type="text")
*
* @Groups({"write"})
*/
private ?string $label = null;
@@ -121,7 +120,7 @@ class PersonAltName
/**
* @return $this
*/
public function setPerson(?Person $person = null)
public function setPerson(Person $person = null)
{
$this->person = $person;