@@ -408,20 +408,20 @@ discard block |
||
408 | 408 | protected static function _determineImplClass(Identifier $identifier): string |
409 | 409 | { |
410 | 410 | switch ($identifier->typeClass()) { |
411 | - case Identifier::CLASS_UNIVERSAL: |
|
412 | - $cls = self::_determineUniversalImplClass($identifier->intTag()); |
|
413 | - // constructed strings may be present in BER |
|
414 | - if ($identifier->isConstructed() && |
|
415 | - is_subclass_of($cls, PrimitiveString::class)) { |
|
416 | - $cls = ConstructedString::class; |
|
417 | - } |
|
418 | - return $cls; |
|
419 | - case Identifier::CLASS_CONTEXT_SPECIFIC: |
|
420 | - return ContextSpecificType::class; |
|
421 | - case Identifier::CLASS_APPLICATION: |
|
422 | - return ApplicationType::class; |
|
423 | - case Identifier::CLASS_PRIVATE: |
|
424 | - return PrivateType::class; |
|
411 | + case Identifier::CLASS_UNIVERSAL: |
|
412 | + $cls = self::_determineUniversalImplClass($identifier->intTag()); |
|
413 | + // constructed strings may be present in BER |
|
414 | + if ($identifier->isConstructed() && |
|
415 | + is_subclass_of($cls, PrimitiveString::class)) { |
|
416 | + $cls = ConstructedString::class; |
|
417 | + } |
|
418 | + return $cls; |
|
419 | + case Identifier::CLASS_CONTEXT_SPECIFIC: |
|
420 | + return ContextSpecificType::class; |
|
421 | + case Identifier::CLASS_APPLICATION: |
|
422 | + return ApplicationType::class; |
|
423 | + case Identifier::CLASS_PRIVATE: |
|
424 | + return PrivateType::class; |
|
425 | 425 | } |
426 | 426 | throw new \UnexpectedValueException( |
427 | 427 | sprintf('%s %d not implemented.', |
@@ -494,12 +494,12 @@ discard block |
||
494 | 494 | private function _isPseudoType(int $tag): bool |
495 | 495 | { |
496 | 496 | switch ($tag) { |
497 | - case self::TYPE_STRING: |
|
498 | - return $this instanceof StringType; |
|
499 | - case self::TYPE_TIME: |
|
500 | - return $this instanceof TimeType; |
|
501 | - case self::TYPE_CONSTRUCTED_STRING: |
|
502 | - return $this instanceof ConstructedString; |
|
497 | + case self::TYPE_STRING: |
|
498 | + return $this instanceof StringType; |
|
499 | + case self::TYPE_TIME: |
|
500 | + return $this instanceof TimeType; |
|
501 | + case self::TYPE_CONSTRUCTED_STRING: |
|
502 | + return $this instanceof ConstructedString; |
|
503 | 503 | } |
504 | 504 | return false; |
505 | 505 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Constructed; |
6 | 6 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | { |
35 | 35 | $obj = clone $this; |
36 | 36 | usort($obj->_elements, |
37 | - function (Element $a, Element $b) { |
|
37 | + function(Element $a, Element $b) { |
|
38 | 38 | if ($a->typeClass() !== $b->typeClass()) { |
39 | 39 | return $a->typeClass() < $b->typeClass() ? -1 : 1; |
40 | 40 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | { |
58 | 58 | $obj = clone $this; |
59 | 59 | usort($obj->_elements, |
60 | - function (Element $a, Element $b) { |
|
60 | + function(Element $a, Element $b) { |
|
61 | 61 | $a_der = $a->toDER(); |
62 | 62 | $b_der = $b->toDER(); |
63 | 63 | return strcmp($a_der, $b_der); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Constructed; |
6 | 6 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | public function strings(): array |
101 | 101 | { |
102 | - return array_map(function (StringType $el) { |
|
102 | + return array_map(function(StringType $el) { |
|
103 | 103 | return $el->string(); |
104 | 104 | }, $this->_elements); |
105 | 105 | } |