Files
firefly-iii/app/lib/Firefly/Storage/User/UserRepositoryInterface.php

50 lines
740 B
PHP
Raw Normal View History

<?php
namespace Firefly\Storage\User;
/**
* Interface UserRepositoryInterface
*
* @package Firefly\Storage\User
*/
interface UserRepositoryInterface
{
/**
* @param $array
*
* @return mixed
*/
public function register($array);
/**
* @param $array
*
* @return mixed
*/
public function auth($array);
/**
* @param $reset
*
* @return mixed
*/
public function findByReset($reset);
/**
* @param $email
*
* @return mixed
*/
public function findByEmail($email);
/**
* @param \User $user
* @param $password
*
* @return mixed
*/
public function updatePassword(\User $user, $password);
2014-07-03 09:16:17 +02:00
}