File "PluginInterface.php"
Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/vendor/league/flysystem/src/PluginInterface.php
File size: 344 bytes
MIME-type: text/x-php
Charset: utf-8
<?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);
}