app\models\VendorContact::getDisplayName PHP Méthode

getDisplayName() public méthode

public getDisplayName ( ) : mixed | string
Résultat mixed | string
    public function getDisplayName()
    {
        if ($this->getFullName()) {
            return $this->getFullName();
        } else {
            return $this->email;
        }
    }