@@ -1120,7 +1120,7 @@ |
||
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 | } |
@@ -10,7 +10,6 @@ |
||
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 |
@@ -87,7 +87,7 @@ |
||
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; |