We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a782589 commit dc0ce78Copy full SHA for dc0ce78
src/Storage/TokenStorage.php
@@ -42,7 +42,7 @@ public function retrieveToken(): ?string
42
if (200 !== $tokenInfo['code']) {
43
return null;
44
}
45
- \assert(!empty($tokenInfo['token']));
+ \assert(isset($tokenInfo['token']));
46
$ci
47
->set($tokenInfo['token'])
48
->expiresAt(new DateTime($tokenInfo['expire']));
0 commit comments