1 | <?php |
||
36 | class FileWriter implements FileWriterConfigurationInterface |
||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The file writer's Symfony DI name. |
||
41 | * |
||
42 | * @var string |
||
43 | * @Type("string") |
||
44 | */ |
||
45 | protected $id = DependencyInjectionKeys::IMPORT_SUBJECT_FILE_WRITER_OK_FILE_AWARE; |
||
46 | |||
47 | /** |
||
48 | * Initialize the instance with the file writer's Symfony DI name. |
||
49 | * |
||
50 | * @param string $id The Symfony DI name |
||
51 | */ |
||
52 | public function __construct($id = DependencyInjectionKeys::IMPORT_SUBJECT_FILE_WRITER_OK_FILE_AWARE) |
||
56 | |||
57 | /** |
||
58 | * Return's the file writer's unique DI identifier. |
||
59 | * |
||
60 | * @return string The file writer's unique DI identifier |
||
61 | */ |
||
62 | public function getId() |
||
66 | } |
||
67 |