DataSift\Storyplayer\ConfigLib\HardCodedList::setConfigType PHP Méthode

setConfigType() public méthode

must be a valid class name
public setConfigType ( string $configType )
$configType string the class name for the data that we are a list of
    public function setConfigType($configType)
    {
        if (!class_exists($configType)) {
            throw new E4xx_NoSuchConfigClass($configType);
        }
        $this->configType = $configType;
    }