Phue\SoftwareUpdate::disableInstallNotification PHP Method

disableInstallNotification() public method

Disable the install notification
public disableInstallNotification ( ) : self
return self This object
    public function disableInstallNotification()
    {
        $this->client->sendCommand(new SetBridgeConfig(array('swupdate' => array('notify' => false))));
        $this->attributes->notify = false;
        return $this;
    }