parent
0ad4708c5e
commit
bf9b41fd17
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace model;
|
||||||
|
|
||||||
|
class MdlUser extends MdlBase{
|
||||||
|
private UserGateway $gw;
|
||||||
|
|
||||||
|
public function __construct(){
|
||||||
|
parent::__construct();
|
||||||
|
$this->gw = new UserGateway($this->con);
|
||||||
|
}
|
||||||
|
public function login(string $username, string $password): bool{
|
||||||
|
return $this->gw->login($username, $password);
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
public function setPseudo(int $id, string $pseudo): User{
|
||||||
|
$this->gw->setPseudo($id, $pseudo);
|
||||||
|
return $this->getFromId($id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function insertInvite(string $pseudo, string $idSession): User{
|
||||||
|
$id = $this->gw->insertInvite($pseudo, $idSession);
|
||||||
|
return $this->getFromId($id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFromId(int $id): User{
|
||||||
|
$row = $this->gw->getFromId($id);
|
||||||
|
return new Invite($row['idjoueur'], $row['pseudo'], $row['idsession']);
|
||||||
|
}*/
|
||||||
|
}
|
Loading…
Reference in new issue