Files
kiri-core/note/Attribute.php
T
as2252258@163.com c06f25fcf5 111
2021-08-29 05:53:47 +08:00

27 lines
384 B
PHP

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