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