Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class IntermediateContext |
||
14 | { |
||
15 | /** |
||
16 | * A storage where each operation can store custom data |
||
17 | * |
||
18 | * @var \SplObjectStorage |
||
19 | */ |
||
20 | public $memory; |
||
21 | |||
22 | /** |
||
23 | * Written by Intermediate operations to indicate whether an element of the stream is to be used |
||
24 | * |
||
25 | * @var bool |
||
26 | */ |
||
27 | public $outUseItem = true; |
||
28 | |||
29 | /** |
||
30 | * Written by Intermediate operations to indicate whether to continue with the next element or not |
||
31 | * |
||
32 | * @var bool |
||
33 | */ |
||
34 | public $outCanContinue = true; |
||
35 | |||
36 | 100 | public function __construct() |
|
41 |