KONTOLODON
/
var
/
www
/
ojs-3.3.0-13
/
lib
/
pkp
/
lib
/
vendor
/
league
/
flysystem
/
src
/
Plugin
/
Nama File / Folder
Size
Action
AbstractPlugin.php
0.473KB
Hapus
Edit
Rename
EmptyDir.php
0.668KB
Hapus
Edit
Rename
ListWith.php
1.415KB
Hapus
Edit
Rename
<?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; } }