mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 11:06:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			223 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			223 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Extensions\Avatar;
 | |
| 
 | |
| use App\Models\User;
 | |
| 
 | |
| interface AvatarSchemaInterface
 | |
| {
 | |
|     public function getId(): string;
 | |
| 
 | |
|     public function getName(): string;
 | |
| 
 | |
|     public function get(User $user): ?string;
 | |
| }
 | 
