LdapTools\Cache\DoctrineCache::get PHP Method

get() public method

public get ( $itemType, $itemName )
    public function get($itemType, $itemName)
    {
        if (!$this->contains($itemType, $itemName)) {
            return null;
        }
        return $this->getCache()->fetch($this->getCacheName($itemType, $itemName));
    }