westdc-zf1/application/module/Open/Event/AppEvent.php

10 lines
298 B
PHP
Raw Permalink Normal View History

<?php
namespace Open\Event;
interface AppEvent
{
public function appCheckParam(\Zend_EventManager_Event $e);
public function appProcessData(\Zend_EventManager_Event $e);
public function appCreated(\Zend_EventManager_Event $e);
public function appEdited(\Zend_EventManager_Event $e);
}