lint
This commit is contained in:
parent
a541338909
commit
7663f684a4
9 changed files with 50 additions and 32 deletions
|
@ -1,4 +1,4 @@
|
|||
<?php
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
|
@ -18,14 +18,14 @@ class FoodVendor
|
|||
private Ulid|null $id = null;
|
||||
|
||||
#[ORM\Column(length: 50)]
|
||||
private ?string $name = null;
|
||||
private string|null $name = null;
|
||||
|
||||
public function getId(): ?Ulid
|
||||
public function getId(): Ulid|null
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getName(): ?string
|
||||
public function getName(): string|null
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue