Merge pull request 'Made fromWhere nullable' (#15) from develop into master
All checks were successful
/ build (push) Successful in 35s
All checks were successful
/ build (push) Successful in 35s
Reviewed-on: #15
This commit is contained in:
commit
5e77ba32c1
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class Key implements JsonSerializable
|
||||||
private Store $store;
|
private Store $store;
|
||||||
#[ORM\Column(nullable: true)]
|
#[ORM\Column(nullable: true)]
|
||||||
private string|null $storeLink;
|
private string|null $storeLink;
|
||||||
#[ORM\Column]
|
#[ORM\Column(nullable: true)]
|
||||||
private string|null $fromWhere;
|
private string|null $fromWhere;
|
||||||
#[ORM\Column(type: 'integer', enumType: KeyState::class)]
|
#[ORM\Column(type: 'integer', enumType: KeyState::class)]
|
||||||
private KeyState $state;
|
private KeyState $state;
|
||||||
|
|
Loading…
Reference in a new issue