mirror of
https://github.com/elyby/accounts.git
synced 2024-11-19 03:33:06 +05:30
20 lines
441 B
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 = '';
|
|
|
|
}
|