ynh_extension_meeo/libs/controle/Controle.lib.php
2024-07-20 10:13:50 +02:00

18 lines
No EOL
347 B
PHP

<?php
namespace YesWiki\MeeO\Controle\Controle;
class Control {
private $wiki;
private $intitule;
private $matiere;
private $coef;
private $eleves;
public function __construct($wiki, $intitule, $matiere, $coef) {
$this->wiki = $wiki;
$this->intitule = $intitule;
$this->matiere = $matiere;
$this->coef = $coef;
}
}