PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
league
/
flysystem
/
src
/
Plugin
<?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; } }
[-] ListFiles.php
[edit]
[-] GetWithMetadata.php
[edit]
[-] ForcedRename.php
[edit]
[-] PluggableTrait.php
[edit]
[+]
..
[-] ListWith.php
[edit]
[-] EmptyDir.php
[edit]
[-] ForcedCopy.php
[edit]
[-] ListPaths.php
[edit]
[-] PluginNotFoundException.php
[edit]
[-] AbstractPlugin.php
[edit]