You are here

public function DoctrineCache::write in Plug 7

Stores a class metadata in the cache.

Parameters

ClassMetadata $metadata A Class Metadata:

Overrides CacheInterface::write

File

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

Class

DoctrineCache
Adapts a Doctrine cache to a CacheInterface.

Namespace

Symfony\Component\Validator\Mapping\Cache

Code

public function write(ClassMetadata $metadata) {
  $this->cache
    ->save($metadata
    ->getClassName(), $metadata);
}