/
home
/
obinna
/
html
/
boaz2
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Cache
/
Persister
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ORM\Cache\Persister; use Doctrine\ORM\Cache\Region; /** * Interface for persister that support second level cache. */ interface CachedPersister { /** * Perform whatever processing is encapsulated here after completion of the transaction. * * @return void */ public function afterTransactionComplete(); /** * Perform whatever processing is encapsulated here after completion of the rolled-back. * * @return void */ public function afterTransactionRolledBack(); /** * Gets the The region access. * * @return Region */ public function getCacheRegion(); }