1 | <?php |
||
13 | class Configuration |
||
14 | { |
||
15 | /** |
||
16 | * @var TypeMap[] |
||
17 | */ |
||
18 | private $typeMaps = array(); |
||
19 | /** |
||
20 | * @var TypeMapFactory |
||
21 | */ |
||
22 | private $typeMapFactory; |
||
23 | /** |
||
24 | * @var MappingOptionsInterface |
||
25 | */ |
||
26 | private $mappingOptions; |
||
27 | |||
28 | public function __construct() |
||
33 | |||
34 | public function getMappingOptions() |
||
38 | |||
39 | public function findTypeMap($sourceType, $destinationType) |
||
49 | |||
50 | public function getAllTypeMaps() |
||
54 | |||
55 | private function computeTypePairHash($sourceType, $destinationType) |
||
59 | } |
||
60 |