1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-25 07:00:22 +01:00

19 lines
344 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?php
namespace Xentral\Components\Filesystem\Plugin;
use Xentral\Components\Filesystem\FilesystemInterface;
interface PluginInterface
{
/**
* @return string
*/
public function getMethod();
/**
* @param FilesystemInterface $filesystem
*/
public function setFilesystem(FilesystemInterface $filesystem);
}