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