UserToken::getFullName PHP Method

getFullName() public method

Получаем полное имя пользователя:
public getFullName ( ) : mixed
return mixed
    public function getFullName()
    {
        return $this->user instanceof User ? $this->user->getFullName() : $this->user_id;
    }