1 | <?php |
||
9 | class Assigned extends Decomposition |
||
10 | { |
||
11 | /** |
||
12 | * @var Codepoint[] |
||
13 | */ |
||
14 | private $mappedTo; |
||
15 | |||
16 | /** |
||
17 | * @param DecompositionType $type |
||
18 | * @param Codepoint[] $mappedTo |
||
19 | */ |
||
20 | public function __construct(DecompositionType $type, array $mappedTo) |
||
26 | |||
27 | /** |
||
28 | * @return Codepoint\Collection|Codepoint[] |
||
29 | */ |
||
30 | public function getMappedTo() |
||
36 | } |