Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class FileSourceBuilder implements SourceBuilderInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $filePath; |
||
17 | |||
18 | /** |
||
19 | * FileSourceBuilder constructor. |
||
20 | * @param string $filePath |
||
21 | */ |
||
22 | public function __construct(string $filePath) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | * |
||
30 | * @throws InvariantException |
||
31 | */ |
||
32 | public function buildSource(): Source |
||
41 |