bubasuma\simplechat\models\User::getName PHP Méthode

getName() public méthode

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