@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace ASN1\Type\Primitive; |
5 | 5 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | protected static function _implodeSubIDs(\GMP ...$subids): string |
142 | 142 | { |
143 | 143 | return implode(".", |
144 | - array_map(function ($num) { |
|
144 | + array_map(function($num) { |
|
145 | 145 | return gmp_strval($num, 10); |
146 | 146 | }, $subids)); |
147 | 147 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace ASN1\Type\Primitive; |
6 | 6 |