TaoLer/vendor/league/flysystem/src/PluginInterface.php

21 lines
344 B
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?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);
}