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