| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 60% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CitationDataChangedEvent implements RenderingEvent |
||
| 14 | { |
||
| 15 | /** @var DataList */ |
||
| 16 | protected $citationData; |
||
| 17 | |||
| 18 | 80 | public function __construct(DataList $citationData) |
|
| 19 | { |
||
| 20 | 80 | $this->citationData = $citationData; |
|
| 21 | 80 | } |
|
| 22 | |||
| 23 | public function getCitationData(): DataList |
||
| 26 | } |
||
| 27 | } |
||
| 28 |