Passed
Push — master ( f88b7c...5cb3a2 )
by meta
03:59
created
src/AzureActiveDirectory.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
             // Make sure the tenant is formatted like xyzcorp.onmicrosoft.com
37 37
             $regex = '/\.onmicrosoft\.com/';
38 38
             if (! preg_match($regex, $tenantName, $hits)) {
39
-                 // Append the suffix if it is missing
40
-                 $tenantName .= '.onmicrosoft.com';
39
+                    // Append the suffix if it is missing
40
+                    $tenantName .= '.onmicrosoft.com';
41 41
             }
42 42
         }
43 43
         $this->tenantName = $tenantName;
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
     public function buildOpenIdConfigUrl()
47 47
     {
48 48
         $this->openIdConfigUrl = $this->baseUrl . '/'
49
-                               . $this->tenantName . '/'
50
-                               . $this->version . '/'
51
-                               . $this->wellKnownOpenIdConfig;
49
+                                . $this->tenantName . '/'
50
+                                . $this->version . '/'
51
+                                . $this->wellKnownOpenIdConfig;
52 52
     }
53 53
 
54 54
     public function downloadOpenIdConfig()
Please login to merge, or discard this patch.