Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class ExternalFileFinderFactory extends AbstractFactory |
||
13 | { |
||
14 | protected FileSystemInterface $fileSystem; |
||
15 | |||
16 | public function __construct(string $operation, string $class, FileSystemInterface $fileSystem) |
||
17 | { |
||
18 | parent::__construct($operation, $class); |
||
19 | $this->fileSystem = $fileSystem; |
||
20 | } |
||
21 | |||
22 | |||
23 | protected function build(string $operation, array $options): ChainOperationInterface |
||
26 | } |
||
27 | |||
28 | protected function configureValidator(): Constraint |
||
32 | ]); |
||
33 | } |
||
34 | } |