예제 #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
파일: WebRequest.php 프로젝트: watoki/curir
 /**
  * @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();
 }