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