Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class MultiFileSourceBuilder implements SourceBuilderInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var string[] |
||
16 | */ |
||
17 | private $filePaths; |
||
18 | |||
19 | /** |
||
20 | * MultiFileSourceBuilder constructor. |
||
21 | * @param string[] $directoryPaths |
||
22 | */ |
||
23 | public function __construct(array $directoryPaths) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | * |
||
31 | * @throws InvariantException |
||
32 | */ |
||
33 | public function buildSource(): Source |
||
48 |