mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:46:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			323 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			323 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Features;
 | 
						|
 | 
						|
use Filament\Actions\Action;
 | 
						|
 | 
						|
abstract class Feature
 | 
						|
{
 | 
						|
    /** you need to agree to the eula in order to run the server */
 | 
						|
    abstract public function listeners(): array;
 | 
						|
 | 
						|
    /** eula */
 | 
						|
    abstract public function featureName(): string;
 | 
						|
 | 
						|
    abstract public function action(): Action;
 | 
						|
}
 |