1 | <?php |
||
7 | abstract class Base implements DataTypeInterface |
||
8 | { |
||
9 | /** |
||
10 | * {@inheritdoc} |
||
11 | */ |
||
12 | abstract public function getMapperHandle(): string; |
||
13 | |||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | abstract public function getRecords(): array; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function afterImport() |
||
25 | } |
||
26 |