Files
zhamao-framework/src/ZM/Annotation/Swoole/HandleEvent.php

25 lines
397 B
PHP
Raw Normal View History

2020-07-11 15:53:30 +08:00
<?php
namespace ZM\Annotation\Swoole;
use Doctrine\Common\Annotations\Annotation\Required;
use Doctrine\Common\Annotations\Annotation\Target;
use ZM\Annotation\AnnotationBase;
/**
2020-09-29 15:07:43 +08:00
* Class HandleEvent
2020-07-11 15:53:30 +08:00
* @package ZM\Annotation\Swoole
* @Annotation
* @Target("METHOD")
*/
2020-09-29 15:07:43 +08:00
class HandleEvent extends AnnotationBase
2020-07-11 15:53:30 +08:00
{
/**
* @var string
* @Required()
*/
public $event;
}