mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-10 18:25:34 +08:00
23 lines
311 B
PHP
23 lines
311 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Context;
|
||
|
|
|
||
|
|
|
||
|
|
interface ContextInterface
|
||
|
|
{
|
||
|
|
public function __construct($param, $cid);
|
||
|
|
|
||
|
|
public function getServer();
|
||
|
|
|
||
|
|
public function getFrame();
|
||
|
|
|
||
|
|
public function getData();
|
||
|
|
|
||
|
|
public function getCid();
|
||
|
|
|
||
|
|
public function getResponse();
|
||
|
|
|
||
|
|
public function getRequest();
|
||
|
|
}
|