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

16 lines
257 B
PHP

<?php
namespace addons\webman\filesystem;
use League\Flysystem\AdapterInterface;
use League\Flysystem\Filesystem;
interface AdapterFactoryInterface
{
/**
* @return AdapterInterface|Filesystem
*/
public function make(array $options);
}