Total Complexity | 7 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PlainText extends Renderer |
||
11 | { |
||
12 | private string $separator = "\n"; |
||
13 | |||
14 | public function setSeparator(string $separator) : PlainText |
||
19 | } |
||
20 | |||
21 | public function getSeparator() : string |
||
22 | { |
||
23 | return $this->separator; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | * @throws DiffException |
||
29 | */ |
||
30 | public function render() : string |
||
51 | } |
||
52 | } |
||
53 |