Completed
Push — master ( da5e0a...8d866b )
by
unknown
04:29
created
src/Provider/CILogon.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,13 +96,13 @@
 block discarded – undo
96 96
             (preg_match('/error="([^"]*)"/', $data, $matches))) {
97 97
             $message = $matches[1];
98 98
             if (preg_match('/error_description="([^"]*)"/', $data, $matches)) {
99
-                $message .= ': ' . urldecode($matches[1]);
99
+                $message .= ': '.urldecode($matches[1]);
100 100
             }
101 101
             throw new IdentityProviderException($message, 0, $data);
102 102
         } elseif (!empty($data['error'])) {
103 103
             $message = $data['error'];
104 104
             if (!empty($data['error_description'])) {
105
-                $message .= ': ' . $data['error_description'];
105
+                $message .= ': '.$data['error_description'];
106 106
             }
107 107
             throw new IdentityProviderException($message, 0, $data);
108 108
         }
Please login to merge, or discard this patch.