| Total Complexity | 2 | 
| Total Lines | 17 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | class CitedItemsChangedEvent implements RenderingEvent  | 
            ||
| 14 | { | 
            ||
| 15 | |||
| 16 | /** @var ArrayListInterface */  | 
            ||
| 17 | private $citedItems;  | 
            ||
| 18 | |||
| 19 | 103 | public function __construct(ArrayListInterface $citedItems)  | 
            |
| 20 |     { | 
            ||
| 21 | 103 | $this->citedItems = $citedItems;  | 
            |
| 22 | 103 | }  | 
            |
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * @return ArrayListInterface  | 
            ||
| 26 | */  | 
            ||
| 27 | 103 | public function getCitedItems(): ArrayListInterface  | 
            |
| 30 | }  | 
            ||
| 31 | }  | 
            ||
| 32 |