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

22 lines
330 B
PHP
Raw Normal View History

2020-03-12 19:06:27 +08:00
<?php
namespace ZM\Annotation\Swoole;
use Doctrine\Common\Annotations\Annotation\Target;
use ZM\Annotation\AnnotationBase;
/**
2020-10-03 23:00:18 +08:00
* Class OnWorkerStart
2020-03-12 19:06:27 +08:00
* @package ZM\Annotation\Swoole
* @Annotation
* @Target("ALL")
*/
2020-10-03 23:00:18 +08:00
class OnWorkerStart extends AnnotationBase
2020-03-12 19:06:27 +08:00
{
2020-09-29 15:07:43 +08:00
/**
* @var int
*/
public $worker_id = 0;
}