1 | <?php |
||
11 | abstract class BaseDataMapper implements DataMapperInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var DataMappers |
||
15 | */ |
||
16 | protected $dataMappers; |
||
17 | |||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | 1 | public function setDataMappers(DataMappers $dataMappers) |
|
27 | |||
28 | /** |
||
29 | * @inheritDoc |
||
30 | */ |
||
31 | 1 | public function getMapper(string $name) : DataMapper |
|
35 | |||
36 | /** |
||
37 | * @inheritDoc |
||
38 | */ |
||
39 | 1 | public function supports($input) : bool |
|
43 | } |
||
44 |