Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class WalkCursor |
||
11 | { |
||
12 | /** |
||
13 | * @var ReadCommandInterface |
||
14 | */ |
||
15 | public $query; |
||
16 | |||
17 | /** |
||
18 | * @var mixed |
||
19 | */ |
||
20 | public $cursor = null; |
||
21 | |||
22 | /** |
||
23 | * @var array|null |
||
24 | */ |
||
25 | public $entities; |
||
26 | |||
27 | /** |
||
28 | * WalkCursor constructor. |
||
29 | * |
||
30 | * @param ReadCommandInterface $query |
||
31 | */ |
||
32 | 20 | public function __construct(ReadCommandInterface $query) |
|
37 |