Passed
Pull Request — master (#305)
by Tim
02:12
created
bin/encryptedattribute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
     PEMCertificatesMock::getPublicKey(PEMCertificatesMock::PUBLIC_KEY)
22 22
 );
23 23
 $attribute = new Attribute('urn:encrypted:attribute', null, null, [new AttributeValue('very secret data')]);
24
-$encAttribute= new EncryptedAttribute($attribute->encrypt($encryptor));
24
+$encAttribute = new EncryptedAttribute($attribute->encrypt($encryptor));
25 25
 
26 26
 echo $encAttribute->toXML()->ownerDocument->saveXML();
Please login to merge, or discard this patch.
src/SAML2/XML/saml/BaseID.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
  * @package simplesamlphp/saml2
26 26
  */
27 27
 class BaseID extends AbstractSamlElement implements
28
-     BaseIdentifierInterface,
29
-     EncryptableElementInterface,
30
-     ExtensionPointInterface
28
+        BaseIdentifierInterface,
29
+        EncryptableElementInterface,
30
+        ExtensionPointInterface
31 31
 {
32 32
     use EncryptableElementTrait;
33 33
     use ExtensionPointTrait;
Please login to merge, or discard this patch.