PHPDaemon\Config\Entry\Generic::resetToDefault PHP Method

resetToDefault() public method

Reset to default
public resetToDefault ( ) : boolean
return boolean Success
    public function resetToDefault()
    {
        if ($this->hasDefaultValue) {
            $this->setHumanValue($this->defaultValue);
            return true;
        }
        return false;
    }