You are here

public function TranslationRequestParamsAbstract::setContentHash in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/smartling/api-sdk-php/src/TranslationRequests/Params/TranslationRequestParamsAbstract.php \Smartling\TranslationRequests\Params\TranslationRequestParamsAbstract::setContentHash()

Parameters

$contentHash:

Return value

$this

File

vendor/smartling/api-sdk-php/src/TranslationRequests/Params/TranslationRequestParamsAbstract.php, line 25

Class

TranslationRequestParamsAbstract
Class TranslationRequestParamsAbstract @package Smartling\TranslationRequests\Params

Namespace

Smartling\TranslationRequests\Params

Code

public function setContentHash($contentHash) {
  $this
    ->set('contentHash', (string) $contentHash);
  return $this;
}