| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class IA5String extends PrimitiveString |
||
| 14 | { |
||
| 15 | use UniversalClass; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Constructor. |
||
| 19 | */ |
||
| 20 | 6 | public function __construct(string $string) |
|
| 21 | { |
||
| 22 | 6 | $this->_typeTag = self::TYPE_IA5_STRING; |
|
| 23 | 6 | parent::__construct($string); |
|
| 24 | 5 | } |
|
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | 6 | protected function _validateString(string $string): bool |
|
| 32 | } |
||
| 33 | } |
||
| 34 |