linting and updating

This commit is contained in:
lubiana 2024-02-13 23:02:22 +01:00
parent 1a99758a0c
commit 7e00f2f8f1
21 changed files with 174 additions and 172 deletions

View file

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace App\Entity;
@ -11,7 +11,6 @@ use Symfony\Component\Uid\Ulid;
#[ORM\Entity(repositoryClass: ItemExtraRepository::class)]
class ItemExtra
{
#[ORM\Id]
#[ORM\GeneratedValue(strategy: 'CUSTOM')]
#[ORM\Column(type: UlidType::NAME, unique: true)]
@ -19,13 +18,14 @@ class ItemExtra
private Ulid $id;
#[ORM\Column(length: 50)]
private ?string $name = null;
private string|null $name = null;
#[ORM\ManyToOne(inversedBy: 'itemExtras')]
#[ORM\JoinColumn(nullable: false)]
private ?MenuItem $menuItem = null;
private MenuItem|null $menuItem = null;
public function __construct() {
public function __construct()
{
$this->id = new Ulid;
}
@ -34,7 +34,7 @@ class ItemExtra
return $this->id;
}
public function getName(): ?string
public function getName(): string|null
{
return $this->name;
}
@ -42,19 +42,17 @@ class ItemExtra
public function setName(string $name): static
{
$this->name = $name;
return $this;
}
public function getMenuItem(): ?MenuItem
public function getMenuItem(): MenuItem|null
{
return $this->menuItem;
}
public function setMenuItem(?MenuItem $menuItem): static
public function setMenuItem(MenuItem|null $menuItem): static
{
$this->menuItem = $menuItem;
return $this;
}
}