1 | <?php |
||
36 | class Formatter implements FormatterConfigurationInterface |
||
|
|||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The trait that provides parameter handling functionality. |
||
41 | * |
||
42 | * @var \TechDivision\Import\Configuration\Jms\Configuration\ParamsTrait |
||
43 | */ |
||
44 | use ParamsTrait; |
||
45 | |||
46 | /** |
||
47 | * The formatter's DI ID to use. |
||
48 | * |
||
49 | * @var string |
||
50 | * @Type("string") |
||
51 | */ |
||
52 | protected $id; |
||
53 | |||
54 | /** |
||
55 | * Return's the formatter's DI ID to use. |
||
56 | * |
||
57 | * @return string The type |
||
58 | */ |
||
59 | public function getId() |
||
63 | } |
||
64 |