Passed
Pull Request — master (#251)
by Gabriel
10:21
created

XcacheCacheTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2
rs 10
1
<?php
2
3
namespace Doctrine\Tests\Common\Cache;
4
5
use Doctrine\Common\Cache\CacheProvider;
6
use Doctrine\Common\Cache\XcacheCache;
7
8
/**
9
 * @requires extension xcache
10
 */
11
class XcacheCacheTest extends CacheTest
12
{
13
    protected function _getCacheDriver() : CacheProvider
14
    {
15
        return new XcacheCache();
16
    }
17
}
18