mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-30 22:31:14 +01:00
21 lines
344 B
PHP
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);
|
|
}
|