| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM\Cache\Persister; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use MailPoetVendor\Doctrine\ORM\Cache\Region; |
| 6 | interface CachedPersister |
| 7 | { |
| 8 | public function afterTransactionComplete(); |
| 9 | public function afterTransactionRolledBack(); |
| 10 | public function getCacheRegion(); |
| 11 | } |
| 12 |