1 | <?php |
||
36 | class ImportAdapter implements ImportAdapterConfigurationInterface |
||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The import adapter's unique DI identifier. |
||
41 | * |
||
42 | * @var string |
||
43 | * @Type("string") |
||
44 | */ |
||
45 | protected $id = DependencyInjectionKeys::IMPORT_ADAPTER_IMPORT_CSV; |
||
46 | |||
47 | /** |
||
48 | * Return's the import adapter's unique DI identifier |
||
49 | * |
||
50 | * @return string The import adapter's unique DI identifier |
||
51 | */ |
||
52 | public function getId() |
||
56 | } |
||
57 |