Completed
Push — master ( 39129b...d7f52b )
by Marco
62:19 queued 59:52
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 Method

Rating   Name   Duplication   Size   Complexity  
A _getCacheDriver() 0 4 1
1
<?php
2
3
namespace Doctrine\Tests\Common\Cache;
4
5
use Doctrine\Common\Cache\WinCacheCache;
6
7
/**
8
 * @requires extension wincache
9
 */
10
class WinCacheCacheTest extends CacheTest
11
{
12
    protected function _getCacheDriver()
13
    {
14
        return new WinCacheCache();
15
    }
16
}
17