Files
dafuweng/addons/webman/filesystem/driver/Local.php
2026-03-02 13:44:38 +08:00

15 lines
310 B
PHP

<?php
namespace addons\webman\filesystem\driver;
use addons\webman\filesystem\AdapterFactoryInterface;
class Local implements AdapterFactoryInterface
{
public function make(array $options)
{
return new \League\Flysystem\Adapter\Local($options['root'], $options['lock'] ?? LOCK_EX);
}
}