Passed
Push — master ( 9ff085...0d6e23 )
by Terrence
12:40
created
src/Provider/CILogon.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -71,12 +71,12 @@
 block discarded – undo
71 71
         ];
72 72
     }
73 73
 
74
-     /**
75
-     * Returns the string that should be used to separate scopes when building
76
-     * the URL for requesting an access token.
77
-     *
78
-     * @return string Scope separator, defaults to space
79
-     */
74
+        /**
75
+         * Returns the string that should be used to separate scopes when building
76
+         * the URL for requesting an access token.
77
+         *
78
+         * @return string Scope separator, defaults to space
79
+         */
80 80
     protected function getScopeSeparator()
81 81
     {
82 82
         return ' ';
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function getResourceOwnerDetailsUrl(AccessToken $token)
53 53
     {
54
-        return 'https://cilogon.org/oauth2/userinfo?access_token=' . urlencode($token);
54
+        return 'https://cilogon.org/oauth2/userinfo?access_token='.urlencode($token);
55 55
     }
56 56
 
57 57
     /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             $error = true;
101 101
             $errmsg = $data['error'];
102 102
             if (!empty($data['error_description'])) {
103
-                $errmsg .= ': ' . $data['error_description'];
103
+                $errmsg .= ': '.$data['error_description'];
104 104
             }
105 105
         } elseif ($response->getStatusCode() >= 400) {
106 106
             $error = true;
Please login to merge, or discard this patch.