Overrides RequestInterface::withMethod
public function withMethod($method) : RequestInterface { $this->assertMethod($method); $new = clone $this; $new->method = strtoupper($method); return $new; }