LdapTools\Cache\CacheTrait::getCacheName PHP Method

getCacheName() protected method

Form the "name" string that the cache uses to refer to this item.
protected getCacheName ( string $itemType, string $itemName ) : string
$itemType string
$itemName string
return string
    protected function getCacheName($itemType, $itemName)
    {
        return MBString::strtolower($this->cachePrefix . '/' . $itemType . '/' . $itemName);
    }