PHRAS-3701 fix error on first connection (#4075)

init missing participant variable as array collection
This commit is contained in:
Aina Sitraka
2022-07-06 11:56:02 +03:00
committed by GitHub
parent 2dc1fd90cc
commit e53b7cc811

View File

@@ -140,6 +140,7 @@ class Basket
public function __construct() public function __construct()
{ {
$this->elements = new ArrayCollection(); $this->elements = new ArrayCollection();
$this->participants = new ArrayCollection();
} }
/** /**