ynh_extension_meeo/libs/controle/Controle.lib.php

18 lines
347 B
PHP
Raw Normal View History

2024-07-20 08:13:50 +00:00
<?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;
}
}