forked from tom.biard/ScienceQuest
parent
9571510a83
commit
09cc0e7da2
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace model;
|
||||||
|
|
||||||
|
class Invite extends Joueur{
|
||||||
|
private string $idSession;
|
||||||
|
|
||||||
|
public function __construct(int $id, string $pseudo, string $idSession)
|
||||||
|
{
|
||||||
|
parent::__construct($id,$pseudo);
|
||||||
|
$this->idSession = $idSession;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getIdSession(): string
|
||||||
|
{
|
||||||
|
return $this->idSession;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue