Files
kiri-core/kiri-annotation/Attribute.php
T

28 lines
418 B
PHP
Raw Normal View History

2021-03-03 18:35:04 +08:00
<?php
2022-01-08 18:49:08 +08:00
namespace Kiri\Annotation;
2021-03-03 18:35:04 +08:00
/**
* Class Attribute
2022-01-08 18:49:08 +08:00
* @package Annotation
2021-03-03 18:35:04 +08:00
*/
2022-01-08 18:49:08 +08:00
abstract class Attribute implements IAnnotation
2021-03-03 18:35:04 +08:00
{
2021-08-29 04:06:49 +08:00
/**
* @param static $class
* @param mixed|string $method
* @return mixed
*/
2021-12-17 04:15:59 +08:00
#[\ReturnTypeWillChange]
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
}