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

setValue() public method

Set value
public setValue ( $value ) : void
return void
    public function setValue($value)
    {
        $old = $this->value;
        $this->value = $value;
        $this->humanValue = static::plainToHuman($value);
        $this->onUpdate($old);
    }