Get a cURL ready string for the upload
string
Overrides PostFileInterface::getCurlString
public function getCurlString() {
$disposition = ';filename=' . basename($this->filename);
return $this->contentType ? '@' . $this->filename . ';type=' . $this->contentType . $disposition : '@' . $this->filename . $disposition;
}