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.
30 lines
478 B
30 lines
478 B
<?php
|
|
|
|
class Partie
|
|
{
|
|
private string $idPartie;
|
|
|
|
/**
|
|
* @param string $idPartie
|
|
*/
|
|
public function __construct(string $idPartie)
|
|
{
|
|
$this->idPartie = $idPartie;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getIdPartie(): string
|
|
{
|
|
return $this->idPartie;
|
|
}
|
|
|
|
/**
|
|
* @param string $idPartie
|
|
*/
|
|
public function setIdPartie(string $idPartie): void
|
|
{
|
|
$this->idPartie = $idPartie;
|
|
}
|
|
} |