mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +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;
 | 
						|
}
 |