mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-26 21:43:53 +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);
|
|
|
|
|
|
}
|