Correction de bug

ServeurDeTest
Noé GARNIER 3 years ago
parent 5c42224197
commit dec5e68869

@ -57,7 +57,7 @@ class EnigmeGateway
WHERE points IS NOT NULL OR points != 0";
$this->con->executeQuery($query);
$tabEnigme=EnigmeFactory::create($this->con->getResults());
return $tabEnigme
return $tabEnigme;
}
public function findSoloEnigma(){
@ -65,7 +65,7 @@ class EnigmeGateway
WHERE points IS NULL OR points = 0";
$this->con->executeQuery($query);
$tabEnigme=EnigmeFactory::create($this->con->getResults());
return $tabEnigme
return $tabEnigme;
}
public function findById(string $idEnigme) : array

Loading…
Cancel
Save