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

CacheConfiguration::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 1
c 1
b 0
f 0
nc 2
nop 1
dl 0
loc 3
rs 10
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