PluginInterface.php 344 B

123456789101112131415161718192021
  1. <?php
  2. namespace League\Flysystem;
  3. interface PluginInterface
  4. {
  5. /**
  6. * Get the method name.
  7. *
  8. * @return string
  9. */
  10. public function getMethod();
  11. /**
  12. * Set the Filesystem object.
  13. *
  14. * @param FilesystemInterface $filesystem
  15. */
  16. public function setFilesystem(FilesystemInterface $filesystem);
  17. }