aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/BackgroundJob/EventReminderJob.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/lib/BackgroundJob/EventReminderJob.php')
-rw-r--r--apps/dav/lib/BackgroundJob/EventReminderJob.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/dav/lib/BackgroundJob/EventReminderJob.php b/apps/dav/lib/BackgroundJob/EventReminderJob.php
index 5025919c84f..894b347de9f 100644
--- a/apps/dav/lib/BackgroundJob/EventReminderJob.php
+++ b/apps/dav/lib/BackgroundJob/EventReminderJob.php
@@ -8,6 +8,8 @@ declare(strict_types=1);
*/
namespace OCA\DAV\BackgroundJob;
+use OCA\DAV\CalDAV\Reminder\NotificationProvider\ProviderNotAvailableException;
+use OCA\DAV\CalDAV\Reminder\NotificationTypeDoesNotExistException;
use OCA\DAV\CalDAV\Reminder\ReminderService;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\TimedJob;
@@ -34,8 +36,8 @@ class EventReminderJob extends TimedJob {
}
/**
- * @throws \OCA\DAV\CalDAV\Reminder\NotificationProvider\ProviderNotAvailableException
- * @throws \OCA\DAV\CalDAV\Reminder\NotificationTypeDoesNotExistException
+ * @throws ProviderNotAvailableException
+ * @throws NotificationTypeDoesNotExistException
* @throws \OC\User\NoUserException
*/
public function run($argument):void {