Memory   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
wmc 2
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 18
ccs 4
cts 6
cp 0.6667
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A save() 0 4 1
A load() 0 4 1
1
<?php
2
3
namespace League\Flysystem\Cached\Storage;
4
5
class Memory extends AbstractCache
6
{
7
    /**
8
     * {@inheritdoc}
9
     */
10 48
    public function save()
11
    {
12
        // There is nothing to save
13 48
    }
14
15
    /**
16
     * {@inheritdoc}
17
     */
18 3
    public function load()
19
    {
20
        // There is nothing to load
21 3
    }
22
}
23