mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
style forms, and associate products with user
This commit is contained in:
parent
e5708e9e5f
commit
e7d6b66f70
11 changed files with 90 additions and 21 deletions
|
@ -28,10 +28,10 @@ class GroupOfProducts
|
|||
private Collection $products;
|
||||
|
||||
/**
|
||||
* @var Collection<int, Selling>
|
||||
* @var Collection<int, Selling>|null
|
||||
*/
|
||||
#[ORM\ManyToMany(targetEntity: Selling::class, inversedBy: 'groupOfProducts')]
|
||||
private Collection $sellings;
|
||||
private ?Collection $sellings = null;
|
||||
|
||||
#[ORM\ManyToOne(inversedBy: 'groupOfProducts')]
|
||||
private ?User $user = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue