Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function withoutHeader($name)
 {
     return new static($this->wrapped->withoutHeader($name));
 }
Exemplo n.º 2
0
 /**
  * Proxy to ServerRequestInterface::removeHeader()
  *
  * {@inheritdoc}
  */
 public function withoutHeader($header)
 {
     $new = $this->psrRequest->withoutHeader($header);
     return new self($new, $this->originalRequest);
 }
Exemplo n.º 3
0
 /**
  * {@inheritDoc}
  */
 public function withoutHeader($name)
 {
     return new self($this->app, $this->psrRequest->withoutHeader($name));
 }
Exemplo n.º 4
0
 /**
  * @inheritDoc
  */
 public function withoutHeader($name)
 {
     $self = clone $this;
     $self->serverRequest = $this->serverRequest->withoutHeader($name);
     return $self;
 }