Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class PageRenderingHistory implements PageRenderingHistoryInterface |
||
17 | { |
||
18 | private array $currentlyRendered = []; |
||
19 | |||
20 | public function startRendering(PageInterface $page): void |
||
21 | { |
||
22 | $this->currentlyRendered[] = $page; |
||
23 | } |
||
24 | |||
25 | public function startRenderingMultiple(array $pages): void |
||
28 | } |
||
29 | |||
30 | public function getRenderedHistory(): array |
||
33 | } |
||
34 | |||
35 | public function reset(): void |
||
40 |