bubasuma\simplechat\models\User::getName PHP Method

getName() public method

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