Total Complexity | 8 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | final class StrikethroughDelimiterProcessor implements DelimiterProcessorInterface |
||
21 | { |
||
22 | 171 | public function getOpeningCharacter(): string |
|
23 | { |
||
24 | 171 | return '~'; |
|
25 | } |
||
26 | |||
27 | 171 | public function getClosingCharacter(): string |
|
28 | { |
||
29 | 171 | return '~'; |
|
30 | } |
||
31 | |||
32 | 54 | public function getMinLength(): int |
|
35 | } |
||
36 | |||
37 | 33 | public function getDelimiterUse(DelimiterInterface $opener, DelimiterInterface $closer): int |
|
42 | } |
||
43 | |||
44 | 33 | public function process(AbstractStringContainer $opener, AbstractStringContainer $closer, int $delimiterUse): void |
|
58 |