GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Fallback::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
crap 1
1
<?php declare(strict_types=1);
2
3
namespace WyriHaximus\React\Cache;
4
5
use React\Cache\CacheInterface;
6
use function React\Promise\all;
7
8
final class Fallback implements CacheInterface
9
{
10
    /** @var CacheInterface */
11
    private $primary;
12
13
    /** @var CacheInterface */
14
    private $fallback;
15
16
    /**
17
     * @param CacheInterface $primary
18
     * @param CacheInterface $fallback
19
     */
20 19
    public function __construct(CacheInterface $primary, CacheInterface $fallback)
21
    {
22 19
        $this->primary = $primary;
23 19
        $this->fallback = $fallback;
24 19
    }
25
26 2
    public function get($key, $default = null)
27
    {
28
        return $this->primary->get($key, $default)->then(function ($value) use ($key, $default) {
29 2
            if ($value === null || $value === $default) {
30 1
                return $this->fallback->get($key, $default);
31
            }
32
33 1
            return $value;
34
        })->then(function ($value) use ($key) {
35 2
            $this->primary->set($key, $value);
36
37 2
            return $value;
38 2
        });
39
    }
40
41 3
    public function set($key, $value, $ttl = null)
42
    {
43 3
        return all([
44 3
            'primary' => $this->primary->set($key, $value, $ttl),
45 3
            'fallback' => $this->fallback->set($key, $value, $ttl),
46
        ])->then(function (array $bool) {
47 2
            return $bool['primary'] === true && $bool['fallback'] === true;
48
        }, function () {
49 1
            return false;
50 3
        });
51
    }
52
53 2 View Code Duplication
    public function delete($key)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
54
    {
55 2
        return all([
56 2
            'primary' => $this->primary->delete($key),
57 2
            'fallback' => $this->fallback->delete($key),
58
        ])->then(function (array $bool) {
59 1
            return $bool['primary'] === true && $bool['fallback'] === true;
60
        }, function () {
61 1
            return false;
62 2
        });
63
    }
64
65 2
    public function getMultiple(array $keys, $default = null)
66
    {
67
        return $this->primary->getMultiple($keys, $default)->then(function (array $items) use ($default) {
68
            $keys = \array_keys(\array_filter($items, function ($value) {
69 2
                return $value === null;
70 2
            }));
71
72 2
            if (\count($keys) == 0) {
73 1
                return $items;
74
            }
75
76
            return $this->fallback->getMultiple($keys, $default)->then(function (array $fallbackItems) use ($items) {
77 1
                foreach ($fallbackItems as $key => $value) {
78 1
                    $items[$key] = $value;
79
                }
80
81 1
                return $items;
82 1
            });
83 2
        });
84
    }
85
86 3 View Code Duplication
    public function setMultiple(array $values, $ttl = null)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
87
    {
88 3
        return all([
89 3
            'primary' => $this->primary->setMultiple($values, $ttl),
90 3
            'fallback' => $this->fallback->setMultiple($values, $ttl),
91
        ])->then(function (array $bool) {
92 2
            return $bool['primary'] === true && $bool['fallback'] === true;
93
        }, function () {
94 1
            return false;
95 3
        });
96
    }
97
98 3 View Code Duplication
    public function deleteMultiple(array $keys)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
99
    {
100 3
        return all([
101 3
            'primary' => $this->primary->deleteMultiple($keys),
102 3
            'fallback' => $this->fallback->deleteMultiple($keys),
103
        ])->then(function (array $bool) {
104 2
            return $bool['primary'] === true && $bool['fallback'] === true;
105
        }, function () {
106 1
            return false;
107 3
        });
108
    }
109
110 2 View Code Duplication
    public function clear()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
111
    {
112 2
        return all([
113 2
            'primary' => $this->primary->clear(),
114 2
            'fallback' => $this->fallback->clear(),
115
        ])->then(function (array $bool) {
116 1
            return $bool['primary'] === true && $bool['fallback'] === true;
117
        }, function () {
118 1
            return false;
119 2
        });
120
    }
121
122 2 View Code Duplication
    public function has($key)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
123
    {
124 2
        return all([
125 2
            'primary' => $this->primary->has($key),
126 2
            'fallback' => $this->fallback->has($key),
127
        ])->then(function (array $bool) {
128 1
            return $bool['primary'] === true && $bool['fallback'] === true;
129
        }, function () {
130 1
            return false;
131 2
        });
132
    }
133
}
134