Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class CitationItemsChanged implements RenderingEvent |
||
16 | { |
||
17 | /** @var ArrayListInterface */ |
||
18 | private $citationItems; |
||
19 | |||
20 | 103 | public function __construct(ArrayListInterface $citationItems) |
|
21 | { |
||
22 | 103 | $this->citationItems = $citationItems; |
|
23 | 103 | } |
|
24 | |||
25 | /** |
||
26 | * @return ArrayListInterface |
||
27 | */ |
||
28 | 44 | public function getCitationItems(): ArrayListInterface |
|
31 | } |
||
32 | } |
||
33 |