Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class PregNativeRFC2550 implements SymbolParserInterface |
||
15 | { |
||
16 | /** |
||
17 | * Number converter. |
||
18 | * |
||
19 | * @var NumberConverterInterface |
||
20 | */ |
||
21 | protected $converter; |
||
22 | |||
23 | /** |
||
24 | * Class constructor. |
||
25 | * |
||
26 | * @param NumberConverterInterface $converter Number converter.] |
||
27 | */ |
||
28 | public function __construct(NumberConverterInterface $converter) |
||
29 | { |
||
30 | $this->converter = $converter; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritDoc |
||
35 | */ |
||
36 | public function parseSymbol(FormatToken $token, FormatParserInterface $parser) |
||
48 | } |
||
49 | } |
||
51 |