Skip to content

Commit 54255ba

Browse files
committed
fix: replace double with single quotes
1 parent a35ecb2 commit 54255ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Http/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function request(string $method, string $path = '', array $options = []):
6868

6969
public function isAuthorized(): bool
7070
{
71-
return $this->tokenStorage->retrieveAccessToken()?->isExpired((new DateTime())->add(new \DateInterval("PT30S"))) === false;
71+
return $this->tokenStorage->retrieveAccessToken()?->isExpired((new DateTime())->add(new \DateInterval('PT30S'))) === false;
7272
}
7373

7474
private function authorize(): void

0 commit comments

Comments
 (0)