| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function minify(string $html): string |
||
| 12 | { |
||
| 13 | $this->findDoctypeInDocument((bool)config('html-min.find_doctype_in_document')); |
||
| 14 | $this->removeWhitespaceBetweenTags((bool)config('html-min.remove_whitespace_between_tags')); |
||
| 15 | $this->removeBlankLinesInScriptElements((bool)config('html-min.remove_blank_lines_in_script_elements')); |
||
| 16 | |||
| 17 | return parent::minify($html); |
||
| 18 | } |
||
| 20 |