mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-16 23:51:08 +02: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;
|
|
}
|