Completed
Push — master ( d71f26...985e99 )
by Mihail
10:44 queued 04:09
created

CacheConfiguration   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 6
rs 10
wmc 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 2
1
<?php
2
/*
3
 * This file is part of the Koded package.
4
 *
5
 * (c) Mihail Binev <[email protected]>
6
 *
7
 * Please view the LICENSE distributed with this source code
8
 * for the full copyright and license information.
9
 */
10
11
namespace Koded\Caching\Configuration;
12
13
use Koded\Stdlib\Config;
14
15
abstract class CacheConfiguration extends Config
16
{
17
    /** @noinspection PhpMissingParentConstructorInspection */
18
    public function __construct(array $parameters = [])
19
    {
20
        $parameters and $this->import($parameters);
21
    }
22
}
23