mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
21 lines
306 B
PHP
21 lines
306 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Annotation\Swoole;
|
|
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("METHOD")
|
|
* Class OnCloseEvent
|
|
*/
|
|
class OnCloseEvent extends OnSwooleEventBase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $connect_type = 'default';
|
|
}
|