DataSift\Storyplayer\ConfigLib\ConfigList::setConfigType PHP Метод

setConfigType() публичный Метод

tells us what type of content we are going to be a list of
public setConfigType ( string $configType )
$configType string the name of a class from ConfigLib
    public function setConfigType($configType)
    {
        $this->configType = $configType;
        $classname = $this->getWrappedConfigClassname();
        if (!class_exists($classname)) {
            throw new E4xx_NoSuchConfigClass($classname);
        }
    }