for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\ApcuCache;
/**
* @requires extension apcu
*/
class ApcuCacheTest extends CacheTest
{
protected function _getCacheDriver()
return new ApcuCache();
}
public function testLifetime()
$this->markTestSkipped('The APC cache TTL is not working in a single process/request. See https://bugs.php.net/bug.php?id=58084');