| 1 | <?php |
||
| 26 | class InMemoryChangeStream implements ChangeStream |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var array |
||
| 30 | */ |
||
| 31 | private $stack = array(); |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | 16 | public function append(PuliResource $resource) |
|
| 44 | |||
| 45 | /** |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | 19 | public function buildStack(ResourceRepository $repository, $path) |
|
| 63 | } |
||
| 64 |