MongoDbEntityConfigReaderCached   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 15
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
ccs 0
cts 3
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * File was created 14.02.2016 00:18
4
 */
5
6
namespace PeekAndPoke\Component\Slumber\Data\MongoDb;
7
8
use Doctrine\Common\Cache\Cache;
9
use PeekAndPoke\Component\Slumber\Core\LookUp\CachedEntityConfigLookUp;
10
11
/**
12
 * @author Karsten J. Gerber <[email protected]>
13
 */
14
class MongoDbEntityConfigReaderCached extends CachedEntityConfigLookUp implements MongoDbEntityConfigReader
15
{
16
    /**
17
     * MongoDbCachingEntityConfigLookUp constructor.
18
     *
19
     * @param MongoDbEntityConfigReader $delegate
20
     * @param Cache                     $cache
21
     * @param string                    $prefix
22
     * @param bool                      $debug
23
     */
24
    public function __construct(MongoDbEntityConfigReader $delegate, Cache $cache, $prefix, $debug = false)
25
    {
26
        parent::__construct($delegate, $cache, $prefix, $debug);
27
    }
28
}
29