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

RedisCluster::lock()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 3
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 RedisCluster
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 RedisCluster extends AbstractStorage
29
{
30
}
31