Commit 8ab7cf35 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

null value pour les témoins a distance et diplomante

parent 0e0b76c6
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -87,9 +87,7 @@ class OffreDeFormationEtape {
    public function getDiplomante()
    {
        if ($this->diplomante === 'O') return true;
        if ($this->diplomante === 'N') return false;
        if ($this->aDistance === null) return false;
        return null;
        return false;
    }

    /**
@@ -98,9 +96,7 @@ class OffreDeFormationEtape {
    public function getADistance()
    {
        if ($this->aDistance === 'O') return true;
        if ($this->aDistance === 'N') return false;
        if ($this->aDistance === null) return false;
        return null;
        return false;
    }

}
 No newline at end of file