diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-10-19 02:46:25 +0000 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-10-19 07:57:35 +0200 |
commit | bb598c8451fbfcfde91a4668322dcda5830d0922 (patch) | |
tree | c73709d5097f683c4301397977c76ba48e48060d /apps/dav/lib | |
parent | 603890e951d44d96fd3e38a5389c804b47eef795 (diff) | |
download | nextcloud-server-bb598c8451fbfcfde91a4668322dcda5830d0922.tar.gz nextcloud-server-bb598c8451fbfcfde91a4668322dcda5830d0922.zip |
chore(deps): Bump nextcloud/coding-standard in /vendor-bin/cs-fixerdependabot/composer/vendor-bin/cs-fixer/nextcloud/coding-standard-1.3.2
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 1.3.1 to 1.3.2.
- [Release notes](https://github.com/nextcloud/coding-standard/releases)
- [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/coding-standard/compare/v1.3.1...v1.3.2)
---
updated-dependencies:
- dependency-name: nextcloud/coding-standard
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/CalDAV/BirthdayService.php | 6 | ||||
-rw-r--r-- | apps/dav/lib/CalDAV/Reminder/INotificationProvider.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/lib/CalDAV/BirthdayService.php b/apps/dav/lib/CalDAV/BirthdayService.php index 9a717b96d63..00b27219cbd 100644 --- a/apps/dav/lib/CalDAV/BirthdayService.php +++ b/apps/dav/lib/CalDAV/BirthdayService.php @@ -139,9 +139,9 @@ class BirthdayService { * @return VCalendar|null * @throws InvalidDataException */ - public function buildDateFromContact(string $cardData, - string $dateField, - string $postfix, + public function buildDateFromContact(string $cardData, + string $dateField, + string $postfix, ?string $reminderOffset):?VCalendar { if (empty($cardData)) { return null; diff --git a/apps/dav/lib/CalDAV/Reminder/INotificationProvider.php b/apps/dav/lib/CalDAV/Reminder/INotificationProvider.php index 1428eb9c46c..31d60f1531d 100644 --- a/apps/dav/lib/CalDAV/Reminder/INotificationProvider.php +++ b/apps/dav/lib/CalDAV/Reminder/INotificationProvider.php @@ -29,6 +29,6 @@ interface INotificationProvider { */ public function send(VEvent $vevent, ?string $calendarDisplayName, - array $principalEmailAddresses, + array $principalEmailAddresses, array $users = []): void; } |