Contao\Cache::remove PHP Метод

remove() публичный статический Метод

Remove a cache entry
public static remove ( string $strKey )
$strKey string The cache key
    public static function remove($strKey)
    {
        unset(static::$arrData[$strKey]);
    }