Cascade\Config\Loader\ClassLoader::setClass PHP Метод

setClass() защищенный Метод

Set the class you want to load from the raw option array
protected setClass ( )
    protected function setClass()
    {
        if (!isset($this->rawOptions['class'])) {
            $this->rawOptions['class'] = static::DEFAULT_CLASS;
        }
        $this->class = $this->rawOptions['class'];
        unset($this->rawOptions['class']);
    }