Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | abstract class RedisStream |
||
8 | { |
||
9 | /** |
||
10 | * Client |
||
11 | * |
||
12 | * @var ClientRedisStreamPhpInterface |
||
13 | */ |
||
14 | protected $_client; |
||
15 | |||
16 | /** |
||
17 | * Name stream |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $_streamName; |
||
22 | |||
23 | /** |
||
24 | * Stream constructor. |
||
25 | * |
||
26 | * @param ClientRedisStreamPhpInterface $client ClientRedisInterface |
||
27 | * @param string $nameStream Name stream |
||
28 | */ |
||
29 | 10 | public function __construct(ClientRedisStreamPhpInterface $client, string $nameStream) |
|
33 | } |
||
34 | } |