mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
22 lines
398 B
PHP
22 lines
398 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\aop\annotations;
|
|
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
use Doctrine\Common\Annotations\Annotation\Required;
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("METHOD")
|
|
*/
|
|
class CollectModelMetrics {
|
|
|
|
/**
|
|
* @Required()
|
|
* @var string sets the prefix for collected metrics. Should be specified without trailing dots
|
|
*/
|
|
public $prefix = '';
|
|
|
|
}
|