Overrides ServerRequestInterface::withoutAttribute
public function withoutAttribute($attribute) : ServerRequestInterface { if (false === array_key_exists($attribute, $this->attributes)) { return $this; } $new = clone $this; unset($new->attributes[$attribute]); return $new; }