Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | final class ImportExtractor extends SimplePatternExtractor |
||
14 | { |
||
15 | private const PATTERN = '/(@import[^;]+\;)/'; |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | protected function getPattern(): string |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $match |
||
27 | * |
||
28 | * @return Extractable |
||
29 | */ |
||
30 | protected function createExtractable(string $match): Extractable |
||
35 |