1 | <?php |
||
36 | class NumberConverter implements NumberConverterConfigurationInterface |
||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The number converter's class name. |
||
41 | * |
||
42 | * @var string |
||
43 | * @Type("string") |
||
44 | */ |
||
45 | protected $id = DependencyInjectionKeys::IMPORT_SUBJECT_NUMBER_CONVERTER_SIMPLE; |
||
46 | |||
47 | /** |
||
48 | * The locale to use. |
||
49 | * |
||
50 | * @var string |
||
51 | * @Type("string") |
||
52 | */ |
||
53 | protected $locale = 'en_US'; |
||
54 | |||
55 | /** |
||
56 | * Return's the number converter's unique DI identifier. |
||
57 | * |
||
58 | * @return string The number converter's unique DI identifier |
||
59 | */ |
||
60 | public function getId() |
||
64 | |||
65 | /** |
||
66 | * Returns the locale to use. |
||
67 | * |
||
68 | * @return string The locale |
||
69 | */ |
||
70 | public function getLocale() |
||
74 | } |
||
75 |