Passed
Push — v7 ( 41e516...4ee131 )
by Georges
01:39
created

Config::getSecurityKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Geolim4
5
 * Date: 12/02/2018
6
 * Time: 23:10
7
 */
8
9
namespace Phpfastcache\Drivers\Files;
10
11
use Phpfastcache\Config\{
12
    ConfigurationOption, IOConfigurationOptionTrait
13
};
14
15
class Config extends ConfigurationOption
16
{
17
    use IOConfigurationOptionTrait;
18
}