From 4f14d0310b8d5c149e5f3beac13c06ab25d52750 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Tue, 22 Sep 2020 13:22:29 -0700 Subject: [PATCH] Fix coding standards issues --- src/LiveStream/LiveStream.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LiveStream/LiveStream.php b/src/LiveStream/LiveStream.php index 4e4b2cb..65802e8 100644 --- a/src/LiveStream/LiveStream.php +++ b/src/LiveStream/LiveStream.php @@ -58,7 +58,7 @@ class LiveStream /** * Secure access token. * - * @var array + * @var string */ private $token; @@ -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(); } }