12345678910111213141516171819202122232425262728 |
- <?php
- declare(strict_types=1);
- namespace Hyperf\Metric\Annotation;
- use Attribute;
- use Doctrine\Common\Annotations\Annotation\Target;
- use Hyperf\Di\Annotation\AbstractAnnotation;
- class Counter extends AbstractAnnotation
- {
- public function __construct($name)
- {
- }
- }
|