13 lines
314 B
PHP
13 lines
314 B
PHP
|
<?php
|
||
|
namespace Westdc\Visual\Event;
|
||
|
|
||
|
use Zend\EventManager\EventInterface;
|
||
|
|
||
|
interface RecordEvent
|
||
|
{
|
||
|
public function checkParam(EventInterface $e);
|
||
|
public function processData(EventInterface $e);
|
||
|
|
||
|
public function recordPosted(EventInterface $e);
|
||
|
public function recordChanged(EventInterface $e);
|
||
|
}
|