public function ApcCache::read

Returns the metadata for the given class from the cache

Parameters

string $class Class Name:

Return value

ClassMetadata|false A ClassMetadata instance or false on miss

Overrides CacheInterface::read

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/Cache/ApcCache.php, line 42

Class

ApcCache

Namespace

Symfony\Component\Validator\Mapping\Cache

Code

public function read($class) {
  return apc_fetch($this->prefix . $class);
}