| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class NewTodoTaskNotifier extends Notifier { |
||
| 9 | /** |
||
| 10 | * @return Number the event which this module handles |
||
| 11 | */ |
||
| 12 | #[Override] |
||
| 13 | public function getEvents() { |
||
| 14 | return OBJECT_SAVE; |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * If an event elsewhere has occurred, it enters in this method. This method |
||
| 19 | * executes one or more actions, depends on the event. |
||
| 20 | * |
||
| 21 | * @param int $event event |
||
| 22 | * @param string $entryid entryid |
||
| 23 | * @param mixed $props |
||
| 24 | */ |
||
| 25 | #[Override] |
||
| 36 | } |
||
| 37 | } |
||
| 39 |