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

getFullName() public méthode

public getFullName ( ) : string
Résultat string
    public function getFullName()
    {
        if ($this->first_name || $this->last_name) {
            return $this->first_name . ' ' . $this->last_name;
        } else {
            return '';
        }
    }