M1\Vars\Loader\IniLoader::load PHP Method

load() public method

public load ( )
    public function load()
    {
        try {
            $this->content = parse_ini_file($this->entity, true);
        } catch (\Exception $e) {
            throw new \RuntimeException(sprintf("%s threw an exception: %s", $this->entity, $e));
        }
        return $this;
    }
IniLoader