12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- declare(strict_types=1);
- namespace Test\Notification;
- use OCP\Notification\IApp;
- use OCP\Notification\INotification;
- class DummyApp implements IApp {
-
- public function notify(INotification $notification): void {
-
- }
-
- public function markProcessed(INotification $notification): void {
-
- }
-
- public function getCount(INotification $notification): int {
-
- }
- }
|