Skip to content

Commit

Permalink
Fix coding standards issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cdubz committed Sep 22, 2020
1 parent e745c1d commit 4f14d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LiveStream/LiveStream.php
Expand Up @@ -58,7 +58,7 @@ class LiveStream
/**
* Secure access token.
*
* @var array
* @var string
*/
private $token;

Expand Down Expand Up @@ -92,7 +92,7 @@ public function __construct(
$this->clientId = $clientId;
$this->scope = $scope;

if ($this->clientId && $this->scope) {
if ($this->clientId !== null && $this->scope !== null) {
$this->refreshToken();
}
}
Expand Down

0 comments on commit 4f14d03

Please sign in to comment.