From 1580c8612b01bfa780d1a7372080a27d182fb7dd Mon Sep 17 00:00:00 2001 From: Côme Chilliet Date: Thu, 10 Oct 2024 12:40:31 +0200 Subject: chore(apps): Apply new rector configuration to autouse classes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/dav/lib/BackgroundJob/EventReminderJob.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apps/dav/lib/BackgroundJob') 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 { -- cgit v1.2.3