mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #7812 from nextcloud/make-sure-the-arrays-are-arrays
Make sure the arrays are arrays
This commit is contained in:
commit
1993eb05cc
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue