initial 2.0.0-a2 commit

This commit is contained in:
jerry
2020-09-29 15:07:43 +08:00
parent 1510e2f0d0
commit f91d24aaaa
59 changed files with 2271 additions and 1475 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace ZM\Event\Swoole;
use ZM\Event\Event;
interface SwooleEventInterface extends Event
{
/**
* @return SwooleEventInterface
*/
public function onActivate();
/**
* @return SwooleEventInterface
*/
public function onAfter();
}