/
home
/
sjslayjy
/
public_html
/
drone
/
vendor
/
league
/
flysystem
/
src
/
Plugin
/
Upload File
HOME
<?php namespace League\Flysystem\Plugin; use League\Flysystem\FilesystemInterface; use League\Flysystem\PluginInterface; abstract class AbstractPlugin implements PluginInterface { /** * @var FilesystemInterface */ protected $filesystem; /** * Set the Filesystem object. * * @param FilesystemInterface $filesystem */ public function setFilesystem(FilesystemInterface $filesystem) { $this->filesystem = $filesystem; } }