Normalization of Context class

This commit is contained in:
whale
2020-04-15 10:55:10 +08:00
parent 676527205f
commit 1d2aaf3c99
8 changed files with 70 additions and 19 deletions

View File

@@ -0,0 +1,22 @@
<?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();
}