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