Components\Model\User::setName PHP Method

setName() public method

Set the name field.
public setName ( string $name ) : mixed
$name string setting the name of the user
return mixed
    public function setName($name)
    {
        $this->name = $name;
        return $this;
    }