mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +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 = '';
 | 
						|
 | 
						|
}
 |