Files
panel-pelican-dev/app/Extensions/Avatar/AvatarSchemaInterface.php

15 lines
223 B
PHP
Raw Permalink Normal View History

<?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;
}