Cache\Namespaced\NamespacedCachePool::prefixValue PHP Method

prefixValue() private method

Add namespace prefix on the key.
private prefixValue ( &$key )
    private function prefixValue(&$key)
    {
        // |namespace|key
        $key = HierarchicalPoolInterface::HIERARCHY_SEPARATOR . $this->namespace . HierarchicalPoolInterface::HIERARCHY_SEPARATOR . $key;
    }