18 lines
No EOL
347 B
PHP
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;
|
|
}
|
|
} |