Make sure the arrays are arrays

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2018-01-12 14:08:00 +01:00
parent a0499e0258
commit 73a6717016
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 3 additions and 3 deletions

View File

@ -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;