Passed
Pull Request — master (#2)
by Jaime Pérez
02:11
created
src/Signature.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1120,7 +1120,7 @@
 block discarded – undo
1120 1120
                                 $pfxlist = explode(" ", $pfx);
1121 1121
                                 foreach ($pfxlist as $pfx) {
1122 1122
                                     $val = trim($pfx);
1123
-                                    if (! empty($val)) {
1123
+                                    if (!empty($val)) {
1124 1124
                                         $arpfx[] = $val;
1125 1125
                                     }
1126 1126
                                 }
Please login to merge, or discard this patch.
src/XML/ec/AbstractEcElement.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 
11 11
 /**
12 12
  * Abstract class to be implemented by all the classes in this namespace
13
-
14 13
  * @package simplesamlphp/xml-security
15 14
  */
16 15
 abstract class AbstractEcElement extends AbstractXMLElement
Please login to merge, or discard this patch.
src/Key/PublicKey.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
         } elseif ($length < self::ASN1_SIZE_256) {
88 88
             $output = sprintf("%c%c%c%s", $type, self::ASN1_SIZE_128 + 1, $length, $string);
89 89
         } else { // ($length < self::ASN1_SIZE_65535)
90
-            $output = sprintf("%c%c%c%c%s", $type, self::ASN1_SIZE_128 +2, $length / 0x0100, $length % 0x0100, $string);
90
+            $output = sprintf("%c%c%c%c%s", $type, self::ASN1_SIZE_128 + 2, $length / 0x0100, $length % 0x0100, $string);
91 91
         }
92 92
 
93 93
         return $output;
Please login to merge, or discard this patch.