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