1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-12 11:19:22 +05:30
accounts/api/aop/annotations/CollectModelMetrics.php

20 lines
441 B
PHP

<?php
namespace api\aop\annotations;
use Doctrine\Common\Annotations\Annotation;
use Doctrine\Common\Annotations\Annotation\Required;
/**
* @Annotation
* @Target("METHOD")
*/
class CollectModelMetrics {
/**
* @Required()
* @var string задаёт префикс для отправки метрик. Задаётся без ведущей и без завершающей точки.
*/
public $prefix = '';
}