| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class SymfonyExtractor implements ExtractorInterface |
||
| 9 | { |
||
| 10 | private SymfonyExtractorInterface $extractor; |
||
| 11 | /** |
||
| 12 | * @var string[] |
||
| 13 | 3 | */ |
|
| 14 | private array $paths; |
||
| 15 | 3 | ||
| 16 | 3 | /** |
|
| 17 | 3 | * @param string[] $paths |
|
| 18 | */ |
||
| 19 | 1 | public function __construct(SymfonyExtractorInterface $extractor, array $paths) |
|
| 23 | 1 | } |
|
| 24 | |||
| 25 | public function extract(MessageCatalogue $catalogue): void |
||
| 36 |