Files
kiri-core/Annotation/Attribute.php
T
2021-03-03 18:35:04 +08:00

27 lines
287 B
PHP

<?php
namespace Annotation;
use Snowflake\Snowflake;
/**
* Class Attribute
* @package Annotation
*/
abstract class Attribute implements IAnnotation
{
/**
* @param array $handler
* @return mixed
*/
public function execute(array $handler): mixed
{
return $this;
}
}