Files
kiri-core/kiri-note/Attribute.php
T
2021-12-17 04:15:59 +08:00

28 lines
395 B
PHP

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