This commit is contained in:
as2252258@163.com
2021-03-29 02:34:31 +08:00
parent 9de9cdcf96
commit 79acf12f71
+33
View File
@@ -0,0 +1,33 @@
<?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
}
}