Skip to content

Commit dc0ce78

Browse files
committed
up
1 parent a782589 commit dc0ce78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Storage/TokenStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function retrieveToken(): ?string
4242
if (200 !== $tokenInfo['code']) {
4343
return null;
4444
}
45-
\assert(!empty($tokenInfo['token']));
45+
\assert(isset($tokenInfo['token']));
4646
$ci
4747
->set($tokenInfo['token'])
4848
->expiresAt(new DateTime($tokenInfo['expire']));

0 commit comments

Comments
 (0)