@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | public function getExpiresIn(): int |
42 | 42 | { |
43 | - return (int) round(Carbon::now()->diffInSeconds($this->expiresAt)); |
|
43 | + return (int)round(Carbon::now()->diffInSeconds($this->expiresAt)); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | public function getTokenType(): string |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | protected function resolveCustomAuth(PendingRequest $httpClient): PendingRequest |
72 | 72 | { |
73 | - if (! is_callable($this->customCallback)) { |
|
73 | + if (!is_callable($this->customCallback)) { |
|
74 | 74 | throw new InvalidArgumentException('customCallback must be callable'); |
75 | 75 | } |
76 | 76 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | { |
82 | 82 | $uri = $response->effectiveUri(); |
83 | 83 | |
84 | - if (! $uri) { |
|
84 | + if (!$uri) { |
|
85 | 85 | return null; |
86 | 86 | } |
87 | 87 |