Pimcore\Model\Asset::getCustomSetting PHP Метод

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

public getCustomSetting ( $key ) : null
$key
Результат null
    public function getCustomSetting($key)
    {
        if (is_array($this->customSettings) && array_key_exists($key, $this->customSettings)) {
            return $this->customSettings[$key];
        }
        return null;
    }