pour déploiement auto v2 via gitlab
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.
 
 

43 lines
500 B

<?php
class Modalite
{
/**
* @var string $code
*/
public $code;
/**
* @var string $texte
*/
public $texte;
public function __construct($code, $texte)
{
$this->code = $code;
$this->texte = $texte;
}
/**
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
/**
* @return string
*/
public function getTexte()
{
return $this->texte;
}
}