dbms/app/Interfaces/UserRepositoryInterface.php
2025-06-25 10:46:08 +09:00

10 lines
130 B
PHP

<?php
namespace App\Interfaces;
interface UserRepositoryInterface
{
public function getUserByEmail(string $email): ?array;
}