mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 03:08:11 +00:00
20 lines
300 B
PHP
20 lines
300 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\User;
|
|
|
|
|
|
interface UserRepositoryInterface
|
|
{
|
|
public function register($array);
|
|
|
|
public function auth($array);
|
|
|
|
public function findByReset($reset);
|
|
|
|
public function findByEmail($email);
|
|
|
|
public function updatePassword(\User $user, $password);
|
|
|
|
|
|
}
|