remove test

This commit is contained in:
Mickael Veaudour 2024-09-23 14:23:18 +02:00
parent b939c7639c
commit 97c596cc5f
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ class Bulletin {
public function __construct($wiki, Eleve $eleve) { public function __construct($wiki, Eleve $eleve) {
$this->eleve = $eleve; $this->eleve = $eleve;
echo var_dump($eleve); // echo var_dump($eleve);
$listManager = $wiki->services->get(ListManager::class); $listManager = $wiki->services->get(ListManager::class);
$matieres = $listManager->getOne('ListeMatiere'); $matieres = $listManager->getOne('ListeMatiere');

View file

@ -17,7 +17,7 @@ class Matiere {
$this->nom = $nom; $this->nom = $nom;
$eleveId = $bulletin->getId(); $eleveId = $bulletin->getId();
echo "<p>".$eleveId."</p>"; // echo "<p>".$eleveId."</p>";
$noteManager = $wiki->services->get(NoteManager::class); $noteManager = $wiki->services->get(NoteManager::class);
$entries = $noteManager->getNotes($eleveId, $id); $entries = $noteManager->getNotes($eleveId, $id);