12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- declare(strict_types=1);
- namespace OCP\Notification;
- interface IApp {
-
- public function notify(INotification $notification): void;
-
- public function markProcessed(INotification $notification): void;
-
- public function getCount(INotification $notification): int;
- }
|