| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class MemoryFactory extends AbstractFactory |
||
| 27 | { |
||
| 28 | protected string $alias = 'memory'; |
||
| 29 | protected ?string $package = 'league/flysystem-memory'; |
||
| 30 | protected string $className = MemoryAdapter::class; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritDoc |
||
| 34 | */ |
||
| 35 | 1 | public function build(array $config): AdapterInterface |
|
| 40 |