mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
19 lines
344 B
PHP
19 lines
344 B
PHP
|
<?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);
|
||
|
}
|