TaoLer/vendor/league/flysystem/src/PluginInterface.php
2020-01-01 13:17:19 +08:00

21 lines
344 B
PHP

<?php
namespace League\Flysystem;
interface PluginInterface
{
/**
* Get the method name.
*
* @return string
*/
public function getMethod();
/**
* Set the Filesystem object.
*
* @param FilesystemInterface $filesystem
*/
public function setFilesystem(FilesystemInterface $filesystem);
}