fix(morelevel): ajout de niveau03 et niveau04
All checks were successful
Cadoles/nineskeletor/pipeline/head This commit looks good
All checks were successful
Cadoles/nineskeletor/pipeline/head This commit looks good
This commit is contained in:
@ -152,6 +152,16 @@ class User implements UserInterface, LegacyPasswordAuthenticatedUserInterface
|
||||
*/
|
||||
private $niveau02;
|
||||
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Niveau03", inversedBy="users")
|
||||
*/
|
||||
private $niveau03;
|
||||
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Niveau04", inversedBy="users")
|
||||
*/
|
||||
private $niveau04;
|
||||
|
||||
/**
|
||||
* @var ArrayCollection
|
||||
* @var UserGroup
|
||||
@ -621,4 +631,28 @@ class User implements UserInterface, LegacyPasswordAuthenticatedUserInterface
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getNiveau03(): ?Niveau03
|
||||
{
|
||||
return $this->niveau03;
|
||||
}
|
||||
|
||||
public function setNiveau03(?Niveau03 $niveau03): self
|
||||
{
|
||||
$this->niveau03 = $niveau03;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getNiveau04(): ?Niveau04
|
||||
{
|
||||
return $this->niveau04;
|
||||
}
|
||||
|
||||
public function setNiveau04(?Niveau04 $niveau04): self
|
||||
{
|
||||
$this->niveau04 = $niveau04;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user