AsyncCoroutine.php 396 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?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
    }
}