Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 317 Bytes

File metadata and controls

18 lines (14 loc) · 317 Bytes

事件绑定模式的代码

所有动作的代码都写在该该目录

namespace MyNamespace;
class ActionName{
    private $_event;
    public function __construct($event) {
        $this->_event = $event;
    }
    
    
    public function getResult(){
        return true;
    }

}