mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 03:56:42 +00:00
19 lines
294 B
PHP
19 lines
294 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\User;
|
|
|
|
|
|
interface UserRepositoryInterface
|
|
{
|
|
public function register($array);
|
|
|
|
public function auth($array);
|
|
|
|
public function findByVerification($verification);
|
|
public function findByReset($reset);
|
|
|
|
public function findByEmail($email);
|
|
|
|
|
|
}
|