Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/spomky-labs/pki-framework/src/ASN1/Feature/
Upload File :
Current File : /home/helpink/www/libraries/vendor/spomky-labs/pki-framework/src/ASN1/Feature/Stringable.php

<?php

declare(strict_types=1);

namespace SpomkyLabs\Pki\ASN1\Feature;

/**
 * Interface for classes that may be cast to string.
 */
interface Stringable
{
    /**
     * Convert object to string.
     */
    public function __toString(): string;

    /**
     * Get the string representation of the type.
     */
    public function string(): string;
}