FileHandler::get()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: afshin
5
 * Date: 12/8/17
6
 * Time: 1:04 AM
7
 */
8
9
namespace Core\Handlers\Session;
10
11
12
use Core\Interfaces\_Session;
13
14
class FileHandler implements _Session
15
{
16
17
    public function get($key)
18
    {
19
20
    }
21
}