@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | public function getExpiresIn(): int |
41 | 41 | { |
42 | - return (int) round(Carbon::now()->diffInSeconds($this->expiresAt)); |
|
42 | + return (int)round(Carbon::now()->diffInSeconds($this->expiresAt)); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function getTokenType(): string |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | protected function resolveCustomAuth(PendingRequest $httpClient): PendingRequest |
71 | 71 | { |
72 | - if (! is_callable($this->customCallback)) { |
|
72 | + if (!is_callable($this->customCallback)) { |
|
73 | 73 | throw new InvalidArgumentException('customCallback must be callable'); |
74 | 74 | } |
75 | 75 |