Files
kiri-core/kiri-note/Attribute.php
T
2021-11-30 15:10:01 +08:00

27 lines
366 B
PHP

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