You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ScienceQuest/project/src/model/metier/Invite.php

18 lines
346 B

<?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;
}
}