Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 72.72% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class ReplicateFactory extends AbstractFactory |
||
28 | { |
||
29 | protected string $alias = 'replicate'; |
||
30 | protected ?string $package = 'league/flysystem-replicate-adapter'; |
||
31 | protected string $className = ReplicateAdapter::class; |
||
32 | |||
33 | /** |
||
34 | * @inheritDoc |
||
35 | */ |
||
36 | 3 | public function build(array $config): AdapterInterface |
|
57 |