mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-07 18:37:55 +00:00
15 lines
198 B
PHP
15 lines
198 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace Firefly\Storage\User;
|
||
|
|
|
||
|
|
|
||
|
|
interface UserRepositoryInterface
|
||
|
|
{
|
||
|
|
public function register();
|
||
|
|
public function auth();
|
||
|
|
|
||
|
|
public function findByVerification($verification);
|
||
|
|
|
||
|
|
|
||
|
|
}
|