Bolt\Configuration\ConfigurationValueProxy::initialize PHP Method

initialize() public method

Initialize the configuration value.
public initialize ( )
    public function initialize()
    {
        if (!$this->checked) {
            $this->config->checkConfig();
            $this->checked = true;
            $this->data = $this->config->get($this->path, $this->default);
        }
    }