NullHttpCache   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 12
ccs 0
cts 2
cp 0
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A isNotModified() 0 3 1
A transfer() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\Sunday\Extension\Transfer;
6
7
final class NullHttpCache implements HttpCacheInterface
8
{
9
    /**
10
     * {@inheritDoc}
11
     */
12
    public function isNotModified(array $server): bool
13
    {
14
        return false;
15
    }
16
17
    public function transfer(): void
18
    {
19
    }
20
}
21