Make sure the arrays are arrays
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
a0499e0258
commit
73a6717016
|
@ -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 New Issue