Set.php 414 B

123456789101112131415161718192021
  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\Identifier;
  12. class Set extends Sequence
  13. {
  14. public function getType()
  15. {
  16. return Identifier::SET;
  17. }
  18. }