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

27 lines
366 B
PHP
Raw Normal View History

2021-03-03 18:35:04 +08:00
<?php
2021-11-30 15:10:01 +08:00
namespace Note;
2021-03-03 18:35:04 +08:00
/**
* Class Attribute
2021-11-30 15:10:01 +08:00
* @package Note
2021-03-03 18:35:04 +08:00
*/
2021-11-30 15:10:01 +08:00
abstract class Attribute implements INote
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-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
}