Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class DropboxFactory extends AbstractFactory |
||
27 | { |
||
28 | protected string $alias = 'null'; |
||
29 | protected ?string $package = 'spatie/flysystem-dropbox'; |
||
30 | protected string $className = DropboxAdapter::class; |
||
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | public function build(array $config): AdapterInterface |
||
42 |