summaryrefslogtreecommitdiffstats
path: root/lib/Notification/Notifier.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-20 16:37:03 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-20 16:37:03 +0200
commitb0e5a566ff520731a52662aa06d7b50fc181e12b (patch)
treed9d945d5b1f32eb38bbcc359bbcbcd4b9f266723 /lib/Notification/Notifier.php
parent172af9fbccde8e2a5be41e07d499981cbee7e38e (diff)
fix(CS): Automatic fix of coding style
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Notification/Notifier.php')
-rw-r--r--lib/Notification/Notifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index 489fd901e..0b0f62e12 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -385,7 +385,7 @@ class Notifier implements INotifier {
if ($notification->getSubject() === 'record_file_stored') {
$subject = $l->t('Call recording now available');
$message = $l->t('The recording for the call in {call} was uploaded to {file}.');
- } else if ($notification->getSubject() === 'transcript_file_stored') {
+ } elseif ($notification->getSubject() === 'transcript_file_stored') {
$subject = $l->t('Transcript now available');
$message = $l->t('The transcript for the call in {call} was uploaded to {file}.');
} else {