Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | abstract class BaseCompactor implements Compactor |
||
23 | { |
||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function compact(string $file, string $contents): string |
||
34 | } |
||
35 | |||
36 | abstract protected function compactContent(string $contents): string; |
||
37 | |||
38 | abstract protected function supports(string $file): bool; |
||
39 | } |
||
40 |