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