Passed
Push — release-4-alpha ( bb691f...4d5e29 )
by Jaime Pérez
02:07
created
src/SAML2/Assertion.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -80,11 +80,11 @@
 block discarded – undo
80 80
      */
81 81
     private $encryptionKey;
82 82
 
83
-     /**
84
-     * The earliest time this assertion is valid, as an UNIX timestamp.
85
-     *
86
-     * @var int|null
87
-     */
83
+        /**
84
+         * The earliest time this assertion is valid, as an UNIX timestamp.
85
+         *
86
+         * @var int|null
87
+         */
88 88
     private $notBefore;
89 89
 
90 90
     /**
Please login to merge, or discard this patch.
src/SAML2/SignedElement.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,15 +30,15 @@
 block discarded – undo
30 30
     protected $certificates = [];
31 31
 
32 32
 
33
-      /**
34
-     * Validate this element against a public key.
35
-     *
36
-     * If no signature is present, false is returned. If a signature is present,
37
-     * but cannot be verified, an exception will be thrown.
38
-     *
39
-     * @param  XMLSecurityKey $key The key we should check against.
40
-     * @return bool True if successful, false if we don't have a signature that can be verified.
41
-     */
33
+        /**
34
+         * Validate this element against a public key.
35
+         *
36
+         * If no signature is present, false is returned. If a signature is present,
37
+         * but cannot be verified, an exception will be thrown.
38
+         *
39
+         * @param  XMLSecurityKey $key The key we should check against.
40
+         * @return bool True if successful, false if we don't have a signature that can be verified.
41
+         */
42 42
     abstract public function validate(XMLSecurityKey $key) : bool;
43 43
 
44 44
 
Please login to merge, or discard this patch.