Files
kiri-core/note/Attribute.php
T
as2252258@163.com 133ca2c273 111
2021-08-29 04:06:49 +08:00

27 lines
406 B
PHP

<?php
namespace Annotation;
/**
* Class Attribute
* @package Annotation
*/
abstract class Attribute implements IAnnotation
{
/**
* @param static $class
* @param mixed|string $method
* @return mixed
*/
public static function execute(mixed $params, mixed $class, mixed $method = ''): mixed
{
// TODO: Implement execute() method.
return true;
}
}