Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wpide
/
vendor
/
league
/
flysystem
/
src
/
Plugin
:
AbstractPlugin.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }