Skip to content

Commit 1a9b67b

Browse files
committed
Fix for php-cs-fixer
1 parent cc7dfdf commit 1a9b67b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

inc/notificationtargetnotification.class.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,11 @@ private function buildPDF($user_name = '')
154154
$language = $_SESSION['glpilanguage'] ?? 'en_GB';
155155
$image_title = $LANG['plugin_mreporting'][$graph['class']][$graph['method']]['title'];
156156
$image_title .= ' ' . lcfirst(
157-
sprintf(__('From %1$s to %2$s'),
157+
sprintf(
158+
__('From %1$s to %2$s'),
158159
IntlDateFormatter::formatObject($start, $format, $language),
159-
IntlDateFormatter::formatObject($end, 'd MMMM Y', $language)
160-
)
160+
IntlDateFormatter::formatObject($end, 'd MMMM Y', $language),
161+
),
161162
);
162163
array_push($images, ['title' => $image_title,
163164
'base64' => $image_base64,

0 commit comments

Comments
 (0)