← Back
Editing: StringType.php
<?php declare(strict_types=1); namespace SpomkyLabs\Pki\ASN1\Type; use SpomkyLabs\Pki\ASN1\Feature\ElementBase; use SpomkyLabs\Pki\ASN1\Feature\Stringable; /** * Interface to mark types that correspond to ASN.1 specification's character strings. That being all simple strings and * time types. */ interface StringType extends ElementBase, Stringable { }
Save File
Cancel