Files
blog/var/Widget/ActionInterface.php
2026-03-21 17:04:18 +08:00

15 lines
192 B
PHP
Executable File

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