app\models\Contact::getFullName PHP 메소드

getFullName() 공개 메소드

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