public function LingotekHttp::patch in Lingotek Translation 3.0.x
Same name and namespace in other branches
- 8 src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 8.2 src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 4.0.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.1.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.2.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.3.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.4.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.5.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.6.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.7.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
- 3.8.x src/Remote/LingotekHttp.php \Drupal\lingotek\Remote\LingotekHttp::patch()
Send a PATCH request.
Parameters
string|\Psr\Http\Message\UriInterface $path: URI object or string.
array $args: Request arguments to the PATCH request.
bool $use_multipart: If TRUE, use multipart post arguments. If FALSE, uses form parameters.
Return value
\Psr\Http\Message\ResponseInterface A response.
Overrides LingotekHttpInterface::patch
File
- src/
Remote/ LingotekHttp.php, line 100
Class
- LingotekHttp
- Lingotek HTTP implementation using Guzzle.
Namespace
Drupal\lingotek\RemoteCode
public function patch($path, $args = [], $use_multipart = FALSE) {
return $this->httpClient
->patch($this
->getBaseUrl() . $path, [
RequestOptions::FORM_PARAMS => $args,
RequestOptions::HEADERS => $this
->getDefaultHeaders() + [
'X-HTTP-Method-Override' => 'PATCH',
],
]);
}