15 lines
275 B
PHP
15 lines
275 B
PHP
|
<?php
|
||
|
namespace Sookon\User\Event;
|
||
|
|
||
|
use Zend\EventManager\EventInterface;
|
||
|
|
||
|
interface PwdEvent
|
||
|
{
|
||
|
|
||
|
public function forgotPwdCheckParam(EventInterface $e);
|
||
|
|
||
|
public function sendGetPasswordMail(EventInterface $e);
|
||
|
|
||
|
public function resetPwdCheckParam(EventInterface $e);
|
||
|
|
||
|
}
|