Passed
Pull Request — master (#305)
by Jaime Pérez
02:20
created
src/SAML2/XML/saml/AbstractBaseID.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@
 block discarded – undo
28 28
  * @package simplesamlphp/saml2
29 29
  */
30 30
 abstract class AbstractBaseID extends AbstractSamlElement implements
31
-     BaseIdentifierInterface,
32
-     EncryptableElementInterface,
33
-     ExtensionPointInterface
31
+        BaseIdentifierInterface,
32
+        EncryptableElementInterface,
33
+        ExtensionPointInterface
34 34
 {
35 35
     use EncryptableElementTrait;
36 36
     use ExtensionPointTrait;
Please login to merge, or discard this 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.