1 | <?php |
||
18 | final class StrikethroughDelimiterProcessor implements DelimiterProcessorInterface |
||
19 | { |
||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 51 | public function getOpeningCharacter(): string |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 51 | public function getClosingCharacter(): string |
|
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | 48 | public function getMinLength(): int |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 30 | public function getDelimiterUse(Delimiter $opener, Delimiter $closer): int |
|
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | 30 | public function process(AbstractStringContainer $opener, AbstractStringContainer $closer, int $delimiterUse) |
|
70 | } |
||
71 |