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

20 lines
212 B
PHP

<?php
namespace Note;
interface INote
{
/**
* @param mixed $class
* @param mixed $method
* @return mixed
*/
public function execute(mixed $class, mixed $method = ''): mixed;
}