Files
kiri-core/Annotation/Aspect.php
T
as2252258@163.com 79acf12f71 modify
2021-03-29 02:34:31 +08:00

34 lines
490 B
PHP

<?php
namespace Annotation;
/**
* Class Aspect
* @package Annotation
*/
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_FUNCTION)] class Aspect extends Attribute
{
/**
* Aspect constructor.
*/
public function __construct()
{
}
/**
* @param array $handler
* @return mixed
*/
public function execute(array $handler): mixed
{
return parent::execute($handler); // TODO: Change the autogenerated stub
}
}