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