Passed
Pull Request — master (#306)
by Tim
02:27
created
src/SAML2/XML/md/AbstractRoleDescriptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
             list($element) = $qname;
116 116
         }
117 117
         $ns = $xml->lookupNamespaceUri($prefix);
118
-        $type = ($ns === null ) ? $element : implode(':', [$ns, $element]);
118
+        $type = ($ns === null) ? $element : implode(':', [$ns, $element]);
119 119
 
120 120
         // now check if we have a handler registered for it
121 121
         $handler = Utils::getContainer()->getExtensionHandler($type);
Please login to merge, or discard this patch.
src/SAML2/Assertion/Transformer/DecodeBase64Transformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      */
90 90
     private function getDecodedAttributeValues(array $encodedValues): array
91 91
     {
92
-        array_walk($encodedValues, function (&$v, $k) {
92
+        array_walk($encodedValues, function(&$v, $k) {
93 93
             $encoded = $v->getValue();
94 94
 
95 95
             if (is_string($encoded)) {
Please login to merge, or discard this patch.