Total Complexity | 8 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class StandardDateSolar implements SymbolFormatterInterface |
||
16 | { |
||
17 | /** |
||
18 | * Number converter. |
||
19 | * |
||
20 | * @var NumberConverterInterface |
||
21 | */ |
||
22 | protected $converter; |
||
23 | |||
24 | /** |
||
25 | * Class constructor. |
||
26 | * |
||
27 | * @param NumberConverterInterface $converter Number converter.] |
||
28 | */ |
||
29 | public function __construct(NumberConverterInterface $converter) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function formatSymbol(DateRepresentationInterface $input, FormatToken $token, FormatterInterface $formatter) |
||
63 |