| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 60% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CitedItemsChanged implements RenderingEvent |
||
| 14 | { |
||
| 15 | |||
| 16 | /** @var ArrayListInterface */ |
||
| 17 | private $citedItems; |
||
| 18 | |||
| 19 | 104 | public function __construct(ArrayListInterface $citedItems) |
|
| 22 | 104 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @return ArrayListInterface |
||
| 26 | */ |
||
| 27 | public function getCitedItems(): ArrayListInterface |
||
| 32 |