| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class DummyFileExtensionCompactor extends FileExtensionCompactor |
||
| 20 | { |
||
| 21 | use NotCallable; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | protected function compactContent(string $contents): string |
||
| 27 | { |
||
| 28 | $this->__call(__METHOD__, func_get_args()); |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | protected function supports(string $file): bool |
||
| 35 | { |
||
| 36 | $this->__call(__METHOD__, func_get_args()); |
||
| 37 | } |
||
| 39 |