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