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