|
<?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);
|
|
|
|
} |