Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | trait RenderingObserverTrait |
||
19 | { |
||
20 | /** @var RenderingMode */ |
||
21 | private $mode; |
||
22 | |||
23 | /** @var ArrayListInterface */ |
||
24 | private $citationItems; |
||
25 | |||
26 | /** @var RenderingState */ |
||
27 | private $state; |
||
28 | |||
29 | 117 | public function initObserver(): void |
|
34 | 117 | } |
|
35 | |||
36 | 109 | public function notify(RenderingEvent $event): void |
|
49 |