1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- declare(strict_types=1);
- namespace Test\Notification;
- use OCP\Notification\AlreadyProcessedException;
- use OCP\Notification\INotification;
- use OCP\Notification\INotifier;
- class DummyNotifier implements INotifier {
-
- public function getID(): string {
-
- }
-
- public function getName(): string {
-
- }
-
- public function prepare(INotification $notification, string $languageCode): INotification {
-
- }
- }
|