<?php /** * 异步协程处理 */ namespace Meibuyu\Micro\Annotation; use Hyperf\Di\Annotation\AbstractAnnotation; /** * @Annotation * @Target("METHOD") */ class AsyncCoroutine extends AbstractAnnotation { public function collectMethod(string $className, ?string $target): void { parent::collectMethod($className, $target); // TODO: Change the autogenerated stub } }