示例#1
0
文件: Request.php 项目: watoki/deli
 /**
  * @return static
  */
 protected function copy()
 {
     return new Request($this->context, $this->target, $this->method, $this->arguments->copy());
 }
示例#2
0
 /**
  * @return WebRequest
  */
 protected function copy()
 {
     return new WebRequest($this->getContext(), $this->getTarget(), $this->getMethod(), $this->getArguments()->copy(), $this->formats->copy(), $this->headers->copy());
 }
示例#3
0
文件: Url.php 项目: watoki/curir
 /**
  * @return \watoki\collections\Map
  */
 public function getParameters()
 {
     return $this->parameters->copy();
 }