18 lines
254 B
PHP
Raw Normal View History

2020-07-11 15:53:30 +08:00
<?php
declare(strict_types=1);
2020-07-11 15:53:30 +08:00
namespace ZM\Annotation\Swoole;
use Doctrine\Common\Annotations\Annotation\Target;
use ZM\Annotation\AnnotationBase;
/**
* Class ZMSetup
2020-07-11 15:53:30 +08:00
* @Annotation
* @Target("METHOD")
*/
class OnSetup extends AnnotationBase
2020-07-11 15:53:30 +08:00
{
}