westdc-zf1/application/module/Westdc/Visual/Event/RecordEvent.php

13 lines
314 B
PHP
Raw Normal View History

2014-05-12 06:53:21 +00:00
<?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);
}