| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | final class Mark extends AbstractInline implements DelimitedInterface |
||
| 20 | { |
||
| 21 | private string $delimiter; |
||
| 22 | |||
| 23 | 44 | public function __construct(string $delimiter = '==') |
|
| 24 | { |
||
| 25 | 44 | parent::__construct(); |
|
| 26 | |||
| 27 | 44 | $this->delimiter = $delimiter; |
|
| 28 | } |
||
| 29 | |||
| 30 | 4 | public function getOpeningDelimiter(): string |
|
| 33 | } |
||
| 34 | |||
| 35 | 4 | public function getClosingDelimiter(): string |
|
| 38 | } |
||
| 39 | } |
||
| 40 |