Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | final class MediaRenderingEventRecorder implements MediaRenderingEventRecorderInterface |
||
17 | { |
||
18 | /** @var MediaInterface[] */ |
||
19 | private $recordedEvents = []; |
||
20 | |||
21 | public function recordRenderingMediaEvents(MediaInterface $media): void |
||
24 | } |
||
25 | |||
26 | /** @return MediaInterface[] */ |
||
27 | public function getRecordedEvents(): array |
||
28 | { |
||
29 | return $this->recordedEvents; |
||
30 | } |
||
31 | |||
32 | public function reset(): void |
||
35 | } |
||
36 | } |
||
37 |