Commit 0e50f2aa authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Correction methode getNiveauToString si pas de type groupe formation sur une étape.

parent cc1adb37
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -41,7 +41,8 @@ class Etape implements HistoriqueAwareInterface, ResourceInterface, ImportAwareI
     */
    public function getNiveauToString()
    {
        return $this->getTypeFormation()->getGroupe()->getLibelleCourt() . $this->getNiveau();

        return $this->getTypeFormation()?->getGroupe()?->getLibelleCourt() . $this->getNiveau();
    }