Passed
Push — main ( 0c4a69...6506c1 )
by Peter
02:08 queued 40s
created
src/AccessToken.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.