| 1 | <?php |
||
| 7 | class Mappings |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Mapping |
||
| 11 | */ |
||
| 12 | private $lowercase; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var Mapping |
||
| 16 | */ |
||
| 17 | private $uppercase; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var Mapping |
||
| 21 | */ |
||
| 22 | private $titlecase; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var Mapping |
||
| 26 | */ |
||
| 27 | private $folding; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param Mapping $lowercase |
||
| 31 | * @param Mapping $uppercase |
||
| 32 | * @param Mapping $titlecase |
||
| 33 | * @param Mapping $folding |
||
| 34 | */ |
||
| 35 | public function __construct( |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return Mapping |
||
| 49 | */ |
||
| 50 | public function getLowercase() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @return Mapping |
||
| 57 | */ |
||
| 58 | public function getUppercase() |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return Mapping |
||
| 65 | */ |
||
| 66 | public function getTitlecase() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @return Mapping |
||
| 73 | */ |
||
| 74 | public function getFolding() |
||
| 78 | } |