PHPWarrior\Units\Warrior::name PHP Method

name() public method

Return the character name.
public name ( ) : mixed
return mixed
    public function name()
    {
        if ($this->name && !empty($this->name)) {
            return $this->name;
        } else {
            return __('Warrior');
        }
    }