21 lines
		
	
	
		
			344 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			344 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
| <?php
 | |
| 
 | |
| namespace League\Flysystem;
 | |
| 
 | |
| interface PluginInterface
 | |
| {
 | |
|     /**
 | |
|      * Get the method name.
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getMethod();
 | |
| 
 | |
|     /**
 | |
|      * Set the Filesystem object.
 | |
|      *
 | |
|      * @param FilesystemInterface $filesystem
 | |
|      */
 | |
|     public function setFilesystem(FilesystemInterface $filesystem);
 | |
| }
 |