15 lines
393 B
PHP
15 lines
393 B
PHP
|
<?php
|
||
|
namespace Fund\Event;
|
||
|
|
||
|
interface FundEvent
|
||
|
{
|
||
|
public function checkFundParam(\Zend_EventManager_Event $e);
|
||
|
|
||
|
public function processFundData(\Zend_EventManager_Event $e);
|
||
|
|
||
|
public function insertToFundTable(\Zend_EventManager_Event $e);
|
||
|
|
||
|
public function checkMdfundParam(\Zend_EventManager_Event $e);
|
||
|
|
||
|
public function processMdfundData(\Zend_EventManager_Event $e);
|
||
|
}
|