Browse Source
Make sure the arrays are arrays
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/7812/head
Joas Schilling
8 years ago
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with
3 additions and
3 deletions
-
apps/dav/lib/HookManager.php
|
|
|
@ -43,7 +43,7 @@ class HookManager { |
|
|
|
private $syncService; |
|
|
|
|
|
|
|
/** @var IUser[] */ |
|
|
|
private $usersToDelete; |
|
|
|
private $usersToDelete = []; |
|
|
|
|
|
|
|
/** @var CalDavBackend */ |
|
|
|
private $calDav; |
|
|
|
@ -52,10 +52,10 @@ class HookManager { |
|
|
|
private $cardDav; |
|
|
|
|
|
|
|
/** @var array */ |
|
|
|
private $calendarsToDelete; |
|
|
|
private $calendarsToDelete = []; |
|
|
|
|
|
|
|
/** @var array */ |
|
|
|
private $addressBooksToDelete; |
|
|
|
private $addressBooksToDelete = []; |
|
|
|
|
|
|
|
/** @var EventDispatcher */ |
|
|
|
private $eventDispatcher; |
|
|
|
|