Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| ActiveCharacterSet | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\IanaValueObjects\CharacterSet; |
| 3 | |
| 4 | use Apie\Core\ValueObjects\Interfaces\LimitedOptionsInterface; |
| 5 | use Apie\Core\ValueObjects\Interfaces\StringValueObjectInterface; |
| 6 | use Apie\IanaValueObjects\HasActiveFilter; |
| 7 | use Apie\IanaValueObjects\StaticDataValueObject; |
| 8 | |
| 9 | /** |
| 10 | * All character sets registered in the IANA Character Sets Registry. |
| 11 | * |
| 12 | * @see https://www.iana.org/assignments/character-sets/character-sets.xhtml |
| 13 | * |
| 14 | * Only active character sets can be used. |
| 15 | */ |
| 16 | final class ActiveCharacterSet implements StringValueObjectInterface, LimitedOptionsInterface |
| 17 | { |
| 18 | use IsCharacterSet; |
| 19 | use StaticDataValueObject; |
| 20 | use HasActiveFilter; |
| 21 | } |