13 lines
201 B
PHP
13 lines
201 B
PHP
|
<?php
|
||
|
namespace Sookon\User\Event;
|
||
|
|
||
|
use Zend\EventManager\EventInterface;
|
||
|
|
||
|
interface EditEvent
|
||
|
{
|
||
|
|
||
|
public function checkParam(EventInterface $e);
|
||
|
|
||
|
public function editSuccess(EventInterface $e);
|
||
|
|
||
|
}
|