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