Files
kiri-core/note/Attribute.php
T

27 lines
384 B
PHP
Raw Normal View History

2021-03-03 18:35:04 +08:00
<?php
namespace Annotation;
/**
* Class Attribute
* @package Annotation
*/
abstract class Attribute implements IAnnotation
{
2021-08-29 04:06:49 +08:00
/**
* @param static $class
* @param mixed|string $method
* @return mixed
*/
2021-08-29 05:53:47 +08:00
public function execute(mixed $class, mixed $method = ''): mixed
2021-05-03 03:48:52 +08:00
{
// TODO: Implement execute() method.
return true;
}
2021-03-05 17:11:47 +08:00
2021-03-03 18:35:04 +08:00
}