Completed
Push — master ( 70aabc...acf2ee )
by Matt
34s queued 18s
created
src/Services/SAMLConfiguration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         $conf['sp']['entityId'] = Injector::inst()->convertServiceProperty($sp['entityId']);
98 98
         $conf['sp']['assertionConsumerService'] = [
99
-            'url' => Injector::inst()->convertServiceProperty($sp['entityId']) . '/saml/acs',
99
+            'url' => Injector::inst()->convertServiceProperty($sp['entityId']).'/saml/acs',
100 100
             'binding' => Constants::BINDING_HTTP_POST
101 101
         ];
102 102
         $conf['sp']['NameIDFormat'] = isset($sp['nameIdFormat']) ?
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         $authnContexts = $this->config()->get('authn_contexts');
132 132
         $disableAuthnContexts = $this->config()->get('disable_authn_contexts');
133 133
 
134
-        if ((bool)$disableAuthnContexts) {
134
+        if ((bool) $disableAuthnContexts) {
135 135
             $authnContexts = false;
136 136
         } else {
137 137
             if (!is_array($authnContexts)) {
Please login to merge, or discard this patch.