OpenXE/classes/Components/Filesystem/Plugin/PluginInterface.php

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);
}