1 | <?php |
||
7 | class TermsImporters extends ImportersBaseFactory { |
||
8 | |||
9 | const TYPE = 'terms'; |
||
10 | |||
11 | protected $importers_map = [ |
||
12 | ShallowDuplicating::TYPE => ShallowDuplicating::class, |
||
13 | ]; |
||
14 | |||
15 | /** |
||
16 | * Returns the factory details. |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | public function details() { |
||
28 | } |
||
29 |