public function AbstractClassMetadataFactory::getCacheDriver in Plug 7
Gets the cache driver used by the factory to cache ClassMetadata instances.
Return value
\Doctrine\Common\Cache\Cache|null
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ AbstractClassMetadataFactory.php, line 85
Class
- AbstractClassMetadataFactory
- The ClassMetadataFactory is used to create ClassMetadata objects that contain all the metadata mapping informations of a class which describes how a class should be mapped to a relational database.
Namespace
Doctrine\Common\Persistence\MappingCode
public function getCacheDriver() {
return $this->cacheDriver;
}