Catch various errors.

This commit is contained in:
James Cole
2018-07-26 06:27:52 +02:00
parent 6bcfea1de4
commit 89be30c4b9
19 changed files with 76 additions and 50 deletions

View File

@@ -42,17 +42,17 @@ class Attempt extends SpectreObject
/** @var Carbon */
private $consentGivenAt;
/** @var array */
private $consentTypes = [];
private $consentTypes;
/** @var Carbon */
private $createdAt;
/** @var array */
private $customFields = [];
private $customFields;
/** @var bool */
private $dailyRefresh;
/** @var string */
private $deviceType;
/** @var array */
private $excludeAccounts = [];
private $excludeAccounts;
/** @var Carbon */
private $failAt;
/** @var string */
@@ -60,7 +60,7 @@ class Attempt extends SpectreObject
/** @var string */
private $failMessage;
/** @var array */
private $fetchScopes = [];
private $fetchScopes;
/** @var bool */
private $finished;
/** @var bool */
@@ -80,7 +80,7 @@ class Attempt extends SpectreObject
/** @var bool */
private $showConsentInformation;
/** @var array */
private $stages = [];
private $stages;
/** @var bool */
private $storeCredentials;
/** @var Carbon */