| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function initializeArguments() |
||
| 35 | { |
||
| 36 | parent::initializeArguments(); |
||
| 37 | |||
| 38 | $this->registerUniversalTagAttributes(); |
||
| 39 | |||
| 40 | $this->registerArgument( |
||
| 41 | 'notification', |
||
| 42 | Notification::class, |
||
| 43 | '', |
||
| 44 | true |
||
| 45 | ); |
||
| 46 | |||
| 47 | $this->registerArgument( |
||
| 48 | 'eventDefinition', |
||
| 49 | EventDefinition::class, |
||
| 50 | '' |
||
| 51 | ); |
||
| 74 |