| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | #[\Override] |
||
| 40 | public function getEventLogInfo(Event $event, $eventName) |
||
| 41 | { |
||
| 42 | $this->default = array( |
||
| 43 | 'type' => $eventName, |
||
| 44 | 'description' => $eventName, |
||
| 45 | ); |
||
| 46 | |||
| 47 | if (!isset($this->commands[$eventName])) { |
||
| 48 | return $this->default; |
||
| 49 | } |
||
| 50 | |||
| 51 | return $this->getEventLogDetails($event, $this->commands[$eventName]); |
||
| 52 | } |
||
| 67 |