| 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 | 86 | public function __construct() |
|
| 40 | } |
||
| 41 |