Passed
Branch master (dc39ff)
by Liam
03:01
created

Apc::load()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 6
c 0
b 0
f 0
rs 10
cc 2
nc 2
nop 1
1
<?php
2
3
/**
4
 * RedisCluster implementation for php-hystrix.
5
 *
6
 * PHP version 7.2
7
 *
8
 * @category Adapter
9
 * @package  Storage
10
 * @author   Liam Sorsby <[email protected]>
11
 * @license  https://www.apache.org/licenses/LICENSE-2.0 Apache
12
 * @link     https://github.org/liamsorsby/php-hystrix
13
 *
14
 * For the full copyright and license information, please view the LICENSE file.
15
 */
16
17
namespace liamsorsby\Hystrix\Storage\Adapter;
18
19
/**
20
 * Class Apc
21
 *
22
 * @category Adapter
23
 * @package  Storage
24
 * @author   Liam Sorsby <[email protected]>
25
 * @license  https://www.apache.org/licenses/LICENSE-2.0 Apache
26
 * @link     https://github.org/liamsorsby/php-hystrix
27
 */
28
class Apc extends AbstractStorage
29
{
30
}
31