fix(manager): add doctrine fixtures
This commit is contained in:
@@ -104,14 +104,6 @@ class Niveau01
|
||||
*/
|
||||
private $modos;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->niveau02s = new ArrayCollection();
|
||||
$this->registrations = new ArrayCollection();
|
||||
$this->users = new ArrayCollection();
|
||||
$this->modos = new ArrayCollection();
|
||||
}
|
||||
|
||||
// == CODE A NE PAS REGENERER
|
||||
public function setId(int $id): self
|
||||
{
|
||||
@@ -121,6 +113,14 @@ class Niveau01
|
||||
}
|
||||
// == FIN DU CODE A NE PAS REGENERER
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->niveau02s = new ArrayCollection();
|
||||
$this->registrations = new ArrayCollection();
|
||||
$this->users = new ArrayCollection();
|
||||
$this->modos = new ArrayCollection();
|
||||
}
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
|
@@ -87,6 +87,15 @@ class Niveau02
|
||||
*/
|
||||
private $users;
|
||||
|
||||
// == CODE A NE PAS REGENERER
|
||||
public function setId(int $id): self
|
||||
{
|
||||
$this->id = $id;
|
||||
|
||||
return $this;
|
||||
}
|
||||
// == FIN DU CODE A NE PAS REGENERER
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->niveau03s = new ArrayCollection();
|
||||
|
@@ -101,7 +101,14 @@ class Niveau03
|
||||
|
||||
return $this;
|
||||
}
|
||||
// ==
|
||||
|
||||
public function setId(int $id): self
|
||||
{
|
||||
$this->id = $id;
|
||||
|
||||
return $this;
|
||||
}
|
||||
// == FIN DU CODE A NE PAS REGENERER
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
|
@@ -108,7 +108,13 @@ class Niveau04
|
||||
return $this;
|
||||
}
|
||||
|
||||
// ==
|
||||
public function setId(int $id): self
|
||||
{
|
||||
$this->id = $id;
|
||||
|
||||
return $this;
|
||||
}
|
||||
// == FIN DU CODE A NE PAS REGENERER
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
|
Reference in New Issue
Block a user