mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 16:40:10 +00:00
Various changes to support the removed old code.
This commit is contained in:
34
app/lib/FireflyIII/Shared/Mail/RegistrationInterface.php
Normal file
34
app/lib/FireflyIII/Shared/Mail/RegistrationInterface.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace FireflyIII\Shared\Mail;
|
||||
|
||||
/**
|
||||
* Interface RegistrationInterface
|
||||
*
|
||||
* @package FireflyIII\Shared\Mail
|
||||
*/
|
||||
interface RegistrationInterface
|
||||
{
|
||||
|
||||
/**
|
||||
* @param \User $user
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function sendVerificationMail(\User $user);
|
||||
|
||||
/**
|
||||
* @param \User $user
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function sendPasswordMail(\User $user);
|
||||
|
||||
/**
|
||||
* @param \User $user
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function sendResetVerification(\User $user);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user