Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
22 | class Emphasis extends AbstractInline implements DelimitedInterface |
||
23 | { |
||
24 | /** @var string */ |
||
25 | protected $delimeter; |
||
26 | |||
27 | 336 | public function __construct(string $delimeter = '_') |
|
28 | { |
||
29 | 336 | parent::__construct(); |
|
30 | |||
31 | 336 | $this->delimeter = $delimeter; |
|
32 | 336 | } |
|
33 | |||
34 | 6 | public function getOpeningDelimiter(): string |
|
37 | } |
||
38 | |||
39 | 6 | public function getClosingDelimiter(): string |
|
44 |