Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 90% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class PatchingCompiler extends Compiler |
||
15 | { |
||
16 | /** |
||
17 | * @param mixed $string |
||
18 | * |
||
19 | * @return Compiler |
||
20 | */ |
||
21 | 6 | public function raw($string) |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param mixed[] ...$strings |
||
28 | * |
||
29 | * @return Compiler |
||
30 | */ |
||
31 | 6 | public function write(...$strings) |
|
36 | } |
||
37 | |||
38 | /** |
||
39 | * @param mixed $string |
||
40 | * |
||
41 | * @return mixed |
||
42 | */ |
||
43 | 6 | private function patch($string) |
|
55 |