| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | abstract class AbstractAdapter |
||
| 7 | { |
||
| 8 | protected array $config = []; |
||
| 9 | |||
| 10 | public function getConfig(): array |
||
| 13 | } |
||
| 14 | |||
| 15 | public function setConfig(array $config): self |
||
| 16 | { |
||
| 17 | $this->config = $config; |
||
| 18 | |||
| 19 | return $this; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function trim(string $htmlMinified): string |
||
| 25 | } |
||
| 26 | } |
||
| 27 |