10 lines
298 B
PHP
10 lines
298 B
PHP
|
<?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);
|
||
|
}
|