10 lines
130 B
PHP
10 lines
130 B
PHP
<?php
|
|
|
|
|
|
namespace App\Interfaces;
|
|
|
|
interface UserRepositoryInterface
|
|
{
|
|
public function getUserByEmail(string $email): ?array;
|
|
}
|