bubasuma\simplechat\models\User::getName PHP 메소드

getName() 공개 메소드

public getName ( ) : string
리턴 string
    public function getName()
    {
        if (null === $this->_name) {
            $this->_name = $this->profile->first_name . ' ' . $this->profile->last_name;
        }
        return $this->_name;
    }