* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FreeDSx\Asn1\Type; /** * Represents a UTF-8 String Type * * @author Chad Sikorra */ class Utf8StringType extends AbstractStringType { protected $tagNumber = self::TAG_TYPE_UTF8_STRING; protected $isCharRestricted = true; }