| 1 | <?php | ||
| 5 | class CharacterSet | ||
| 6 | { | ||
| 7 | private $characters; | ||
| 8 | |||
| 9 | /** | ||
| 10 | * CharacterSet constructor. | ||
| 11 | * | ||
| 12 | * @param string $characters | ||
| 13 | */ | ||
| 14 | public function __construct($characters) | ||
| 18 | |||
| 19 | /** | ||
| 20 | * Get Character set | ||
| 21 | * | ||
| 22 | * @return string | ||
| 23 | */ | ||
| 24 | public function getCharacters() | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @return string | ||
| 31 | */ | ||
| 32 | public function __toString() | ||
| 40 | } | ||
| 41 |