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

WinCacheCacheTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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