Passed
Push — main ( 5845e7...8d6d13 )
by Ben
03:28 queued 01:09
created
test/src/Provider/ChasterAppTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@
 block discarded – undo
73 73
 
74 74
         $token = $this->provider->getAccessToken('authorization_code', ['code' => 'mock_authorization_code']);
75 75
 
76
-        $providerAuthorizationUrl = $this->provider->oAuthBaseUrl . '/auth';
77
-        $providerAccessTokenUrl = $this->provider->oAuthBaseUrl . '/token';
76
+        $providerAuthorizationUrl = $this->provider->oAuthBaseUrl.'/auth';
77
+        $providerAccessTokenUrl = $this->provider->oAuthBaseUrl.'/token';
78 78
         $providerResourceOwnerUrl = 'https://api.chaster.app/auth/profile';
79 79
 
80 80
         $this->assertEquals($providerAuthorizationUrl, $this->provider->getBaseAuthorizationUrl());
Please login to merge, or discard this patch.
src/Provider/ChasterApp.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function getBaseAccessTokenUrl(array $params): string
43 43
     {
44
-        return $this->baseAuthUrl . '/token';
44
+        return $this->baseAuthUrl.'/token';
45 45
     }
46 46
 
47 47
     /**
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function getBaseAuthorizationUrl(): string
53 53
     {
54
-        return $this->baseAuthUrl . '/auth';
54
+        return $this->baseAuthUrl.'/auth';
55 55
     }
56 56
 
57 57
     /**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function getResourceOwnerDetailsUrl(AccessToken $token): string
67 67
     {
68
-        return $this->apiDomain . '/auth/profile';
68
+        return $this->apiDomain.'/auth/profile';
69 69
     }
70 70
 
71 71
     /**
Please login to merge, or discard this patch.