<?php /** * 日志追踪 写队列 批量更新到数据库 */ namespace Meibuyu\Micro\Annotation; use Hyperf\Di\Annotation\AbstractAnnotation; /** * @Annotation * @Target("METHOD") */ class LogTrace extends AbstractAnnotation { public function collectMethod(string $className, ?string $target): void { parent::collectMethod($className, $target); // TODO: Change the autogenerated stub } }