mirror of
https://github.com/pelican-dev/panel.git
synced 2025-10-30 21:06: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;
|
|
}
|