Phue\Schedule::setDescription PHP Method

setDescription() public method

Set description
public setDescription ( string $description ) : self
$description string
return self This object
    public function setDescription($description)
    {
        $x = new SetScheduleAttributes($this);
        $y = $x->description((string) $description);
        $this->client->sendCommand($y);
        $this->attributes->description = (string) $description;
        return $this;
    }