summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php')
-rw-r--r--apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php17
1 files changed, 7 insertions, 10 deletions
diff --git a/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php b/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php
index 81d4474011c..f05439932b6 100644
--- a/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php
+++ b/apps/dav/lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php
@@ -33,11 +33,12 @@ use OCP\Mail\IMailer;
use OCP\IUser;
use Sabre\VObject\Component\VCalendar;
-class EmailProvider extends AbstractNotificationProvider
-{
+class EmailProvider extends AbstractNotificationProvider {
+
/** @var IMailer */
private $mailer;
+ /** @var string */
public const NOTIFICATION_TYPE = 'EMAIL';
/**
@@ -63,8 +64,7 @@ class EmailProvider extends AbstractNotificationProvider
* @return void
* @throws \Exception
*/
- public function send(VCalendar $vcalendar, string $calendarDisplayName, IUser $user): void
- {
+ public function send(VCalendar $vcalendar, string $calendarDisplayName, IUser $user):void {
if ($user->getEMailAddress() === null) {
return;
}
@@ -111,8 +111,7 @@ class EmailProvider extends AbstractNotificationProvider
* @param IEMailTemplate $template
* @param string $summary
*/
- private function addSubjectAndHeading(IEMailTemplate $template, string $summary): void
- {
+ private function addSubjectAndHeading(IEMailTemplate $template, string $summary):void {
$template->setSubject('Notification: ' . $summary);
$template->addHeading($summary);
}
@@ -122,8 +121,7 @@ class EmailProvider extends AbstractNotificationProvider
* @param array $eventData
* @param string $calendarDisplayName
*/
- private function addBulletList(IEMailTemplate $template, array $eventData, string $calendarDisplayName): void
- {
+ private function addBulletList(IEMailTemplate $template, array $eventData, string $calendarDisplayName):void {
$template->addBodyListItem($calendarDisplayName, $this->l10n->t('Calendar:'),
$this->getAbsoluteImagePath('actions/info.svg'));
@@ -148,8 +146,7 @@ class EmailProvider extends AbstractNotificationProvider
* @param string $path
* @return string
*/
- private function getAbsoluteImagePath($path): string
- {
+ private function getAbsoluteImagePath(string $path):string {
return $this->urlGenerator->getAbsoluteURL(
$this->urlGenerator->imagePath('core', $path)
);