mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 14:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			261 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			261 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Extensions\Features;
 | |
| 
 | |
| use Filament\Actions\Action;
 | |
| 
 | |
| interface FeatureSchemaInterface
 | |
| {
 | |
|     /** @return string[] */
 | |
|     public function getListeners(): array;
 | |
| 
 | |
|     public function getId(): string;
 | |
| 
 | |
|     public function getAction(): Action;
 | |
| }
 | 
