| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| 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 | protected array $defaults = [ |
||
| 32 | 'authToken' => '' |
||
| 33 | ]; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritDoc |
||
| 37 | */ |
||
| 38 | 1 | public function build(array $config): AdapterInterface |
|
| 46 |