Merge pull request 'Made fromWhere nullable' (#15) from develop into master

Reviewed-on: https://git.php.fail/neintonine/gamesshop/pulls/15
This commit is contained in:
neintonine 2024-11-08 12:50:59 +00:00
commit 5e77ba32c1

View file

@ -26,7 +26,7 @@ class Key implements JsonSerializable
private Store $store;
#[ORM\Column(nullable: true)]
private string|null $storeLink;
#[ORM\Column]
#[ORM\Column(nullable: true)]
private string|null $fromWhere;
#[ORM\Column(type: 'integer', enumType: KeyState::class)]
private KeyState $state;