Passed
Push — master ( cca6a3...d8d955 )
by Tim
04:33
created
src/IdP/MetadataBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
                     $attr[] = new Attribute(
275 275
                         name: $matches[2],
276 276
                         nameFormat: $matches[1] === C::NAMEFORMAT_UNSPECIFIED ? null : $matches[1],
277
-                        attributeValue: $attrValues,
277
+                        attributeValue : $attrValues,
278 278
                     );
279 279
                 } else {
280 280
                     $attr[] = new Attribute(
Please login to merge, or discard this patch.
src/Controller/Adfs.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             $wa = $request->get('wa');
113 113
             if ($wa === 'wsignout1.0') {
114 114
                 return new StreamedResponse(
115
-                    function () use ($idp) {
115
+                    function() use ($idp) {
116 116
                         ADFS_IDP::receiveLogoutMessage($idp);
117 117
                     },
118 118
                 );
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
             $logoutError = null;
131 131
 
132 132
             return new StreamedResponse(
133
-                function () use ($idp, /** @scrutinizer ignore-type */ $assocId, $relayState, $logoutError) {
133
+                function() use ($idp, /** @scrutinizer ignore-type */ $assocId, $relayState, $logoutError) {
134 134
                     $idp->handleLogoutResponse($assocId, $relayState, $logoutError);
135 135
                 },
136 136
             );
Please login to merge, or discard this patch.
src/IdP/ADFS.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
         ];
140 140
 
141 141
         return new StreamedResponse(
142
-            function () use ($idp, &$state) {
142
+            function() use ($idp, &$state) {
143 143
                 $idp->handleAuthenticationRequest($state);
144 144
             },
145 145
         );
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
         }
197 197
 
198 198
         return new StreamedResponse(
199
-            function () use ($idp, &$state) {
199
+            function() use ($idp, &$state) {
200 200
                 $idp->handleAuthenticationRequest($state);
201 201
             },
202 202
         );
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
         Logger::debug($wresult);
597 597
 
598 598
         $wctx = $state['adfs:wctx'];
599
-        $wreply = $state['adfs:wreply'] ? : $spMetadata->getValue('prp');
599
+        $wreply = $state['adfs:wreply'] ?: $spMetadata->getValue('prp');
600 600
         ADFS::postResponse($wreply, $wresult, $wctx);
601 601
     }
602 602
 
Please login to merge, or discard this patch.