mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-20 15:15:35 +08:00
17 lines
245 B
PHP
17 lines
245 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Annotation\Swoole;
|
||
|
|
|
||
|
|
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Annotation
|
||
|
|
* @Target("METHOD")
|
||
|
|
* Class OnRequestEvent
|
||
|
|
* @package ZM\Annotation\Swoole
|
||
|
|
*/
|
||
|
|
class OnRequestEvent extends OnSwooleEventBase
|
||
|
|
{
|
||
|
|
}
|