Commit 3c73114e authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

[FIX] Signature de méthode n'acceptant pas le retour de valeur null.

parent e7641303
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -560,9 +560,9 @@ class Individu implements HistoriqueAwareInterface, SourceAwareInterface
    }

    /**
     * @return string
     * @return string|null
     */
    public function getType(): string
    public function getType(): ?string
    {
        return $this->type;
    }