| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class WebDAVFactory extends AbstractFactory |
||
| 27 | { |
||
| 28 | protected string $alias = 'webdav'; |
||
| 29 | protected ?string $package = 'league/flysystem-webdav'; |
||
| 30 | protected string $className = WebDAVAdapter::class; |
||
| 31 | protected array $defaults = [ |
||
| 32 | 'baseUri' => '', |
||
| 33 | 'userName' => '', |
||
| 34 | 'password' => '', |
||
| 35 | 'proxy' => '', |
||
| 36 | ]; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritDoc |
||
| 40 | */ |
||
| 41 | 1 | public function build(array $config): AdapterInterface |
|
| 46 |