mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-09 01:35:35 +08:00
21 lines
314 B
PHP
21 lines
314 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Annotation\Swoole;
|
|
|
|
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("METHOD")
|
|
* Class OnCloseEvent
|
|
* @package ZM\Annotation\Swoole
|
|
*/
|
|
class OnCloseEvent extends OnSwooleEventBase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $connect_type = "default";
|
|
} |