Completed
Push — master ( f14311...39d909 )
by Krister
05:40
created
src/Provider/Trakt.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function getBaseAuthorizationUrl()
33 33
     {
34
-        return $this->basUrl . '/oauth/authorize';
34
+        return $this->basUrl.'/oauth/authorize';
35 35
     }
36 36
 
37 37
     /**
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function getBaseAccessTokenUrl(array $params)
41 41
     {
42
-        return $this->baseUrlApi . '/oauth/token';
42
+        return $this->baseUrlApi.'/oauth/token';
43 43
     }
44 44
 
45 45
     /**
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function getResourceOwnerDetailsUrl(AccessToken $token)
49 49
     {
50
-        return $this->baseUrlApi . '/users/settings';
50
+        return $this->baseUrlApi.'/users/settings';
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.