gw = new SexeGateway($this->con); } public function getFromId(int $id): Sexe{ $row = $this->gw->getFromId($id); return new Sexe($row['id'], $row['libelle']); } public function getAll(): array { $ret=array(); $row = $this->gw->getAll(); for($i=0; $i< count($row); $i++){ array_push($ret, new Sexe($row[$i]['id'], $row[$i]['libelle'])); } return $ret; } }