@@ -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 | |
@@ -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; |
| 5 | 5 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @var array |
| 61 | 61 | */ |
| 62 | - const MAP_TAG_TO_CLASS = [ /* @formatter:off */ |
|
| 62 | + const MAP_TAG_TO_CLASS = [/* @formatter:off */ |
|
| 63 | 63 | self::TYPE_EOC => Primitive\EOC::class, |
| 64 | 64 | self::TYPE_BOOLEAN => Primitive\Boolean::class, |
| 65 | 65 | self::TYPE_INTEGER => Primitive\Integer::class, |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * |
| 116 | 116 | * @var array |
| 117 | 117 | */ |
| 118 | - const MAP_TYPE_TO_NAME = [ /* @formatter:off */ |
|
| 118 | + const MAP_TYPE_TO_NAME = [/* @formatter:off */ |
|
| 119 | 119 | self::TYPE_EOC => "EOC", |
| 120 | 120 | self::TYPE_BOOLEAN => "BOOLEAN", |
| 121 | 121 | self::TYPE_INTEGER => "INTEGER", |
@@ -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\Tagged; |
| 6 | 6 | |
@@ -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\Constructed; |
| 5 | 5 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | public function strings(): array |
| 75 | 75 | { |
| 76 | - return array_map(function (StringType $el) { |
|
| 76 | + return array_map(function(StringType $el) { |
|
| 77 | 77 | return $el->string(); |
| 78 | 78 | }, $this->_elements); |
| 79 | 79 | } |
@@ -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\Feature; |
| 6 | 6 | |