ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ilNotificationHandler.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Notifications;
22 
25 
29 abstract class ilNotificationHandler
30 {
31  abstract public function notify(ilNotificationObject $notification): void;
32 
33  public function showSettings(ilPropertyFormGUI $form): void
34  {
35  }
36 
37  public function clear(): void
38  {
39  }
40 }
notify(ilNotificationObject $notification)