Sequence.php 490 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of the PHPASN1 library.
  4. *
  5. * Copyright © Friedrich Große <friedrich.grosse@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace FG\ASN1\Universal;
  11. use FG\ASN1\Construct;
  12. use FG\ASN1\Parsable;
  13. use FG\ASN1\Identifier;
  14. class Sequence extends Construct implements Parsable
  15. {
  16. public function getType()
  17. {
  18. return Identifier::SEQUENCE;
  19. }
  20. }