Files
zhamao-framework/src/ZM/Annotation/Swoole/OnCloseEvent.php
2022-03-15 18:05:33 +08:00

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';
}