app\models\Contact::getFullName PHP Method

getFullName() public method

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