westdc-zf1/vendor/Sookon/Article/Event/ArticleEvent.php

12 lines
313 B
PHP

<?php
namespace Sookon\Article\Event;
use Zend\EventManager\EventInterface;
interface ArticleEvent
{
public function checkParam(EventInterface $e);
public function processData(EventInterface $e);
public function recordPosted(EventInterface $e);
public function recordChanged(EventInterface $e);
}