mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 05:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			121 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			121 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Enums;
 | |
| 
 | |
| enum HeaderActionPosition: string
 | |
| {
 | |
|     case Before = 'before';
 | |
|     case After = 'after';
 | |
| }
 | 
