1<?php
2/**
3 * This file is part of the FreeDSx ASN1 package.
4 *
5 * (c) Chad Sikorra <Chad.Sikorra@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
11namespace FreeDSx\Asn1\Type;
12
13/**
14 * Represents a Videotex String type.
15 *
16 * @author Chad Sikorra <Chad.Sikorra@gmail.com>
17 */
18class VideotexStringType extends AbstractStringType
19{
20    protected $tagNumber = self::TAG_TYPE_VIDEOTEX_STRING;
21
22    protected $isCharRestricted = true;
23}
24