Xpressengine\Config\ConfigEntity::setValueObject PHP Method

setValueObject() private method

Set value object
private setValueObject ( array $attributes ) : void
$attributes array name and variables
return void
    private function setValueObject(array $attributes)
    {
        $info = isset($attributes['vars']) && empty($attributes['vars']) === false ? json_decode($attributes['vars'], true) : [];
        $this->vo = new ConfigVO($info);
    }