Files
typecho/var/Widget/DoInterface.php
T
2021-08-27 18:06:57 +08:00

14 lines
183 B
PHP

<?php
namespace Widget;
/**
* 可以被Widget_Do调用的接口
*/
interface DoInterface
{
/**
* 接口需要实现的入口函数
*/
public function action();
}