Remove a POST field or file by name
string $field Name of the POST field or file to remove:
EntityEnclosingRequestInterface
Overrides EntityEnclosingRequestInterface::removePostField
public function removePostField($field) {
$this->postFields
->remove($field);
$this
->processPostFields();
return $this;
}