Security update for Core, with self-updated composer
[yaffs-website] / vendor / doctrine / cache / tests / Doctrine / Tests / Common / Cache / XcacheCacheTest.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Cache;
4
5 use Doctrine\Common\Cache\XcacheCache;
6
7 /**
8  * @requires extension xcache
9  */
10 class XcacheCacheTest extends CacheTest
11 {
12     protected function _getCacheDriver()
13     {
14         return new XcacheCache();
15     }
16 }