You are here

public function DoctrineCache::has in Plug 7

Returns whether metadata for the given class exists in the cache.

Parameters

string $class:

Overrides CacheInterface::has

File

lib/Symfony/validator/Symfony/Component/Validator/Mapping/Cache/DoctrineCache.php, line 49

Class

DoctrineCache
Adapts a Doctrine cache to a CacheInterface.

Namespace

Symfony\Component\Validator\Mapping\Cache

Code

public function has($class) {
  return $this->cache
    ->contains($class);
}