1 | <?php |
||
36 | class FilesystemAdapter implements FilesystemAdapterConfigurationInterface |
||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The filesystem adapter's class name. |
||
41 | * |
||
42 | * @var string |
||
43 | * @Type("string") |
||
44 | */ |
||
45 | protected $id = DependencyInjectionKeys::IMPORT_ADAPTER_FILESYSTEM_FACTORY_PHP; |
||
46 | |||
47 | /** |
||
48 | * The filesystem specific adapter configuration. |
||
49 | * |
||
50 | * @var \TechDivision\Import\Configuration\Subject\FilesystemAdapter\AdapterConfigurationInterface |
||
51 | * @Type("TechDivision\Import\Configuration\Jms\Configuration\Subject\FilesystemAdapter\Adapter") |
||
52 | */ |
||
53 | protected $adapter; |
||
54 | |||
55 | /** |
||
56 | * Return's the filesystem adapter's unique DI identifier. |
||
57 | * |
||
58 | * @return string The filesystem adapter's unique DI identifier |
||
59 | */ |
||
60 | public function getId() |
||
64 | |||
65 | /** |
||
66 | * Return's the filesystem specific adapter configuration. |
||
67 | * |
||
68 | * @return \TechDivision\Import\Configuration\Subject\FilesystemAdapter\AdapterConfigurationInterface The filesystem specific adapter configuration |
||
69 | */ |
||
70 | public function getAdapter() |
||
74 | } |
||
75 |