public function TranslationRequestParamsAbstract::setTotalStringCount in TMGMT Translator Smartling 8.3
Same name and namespace in other branches
- 8.4 vendor/smartling/api-sdk-php/src/TranslationRequests/Params/TranslationRequestParamsAbstract.php \Smartling\TranslationRequests\Params\TranslationRequestParamsAbstract::setTotalStringCount()
Parameters
$totalStringCount:
Return value
$this
File
- vendor/
smartling/ api-sdk-php/ src/ TranslationRequests/ Params/ TranslationRequestParamsAbstract.php, line 55
Class
- TranslationRequestParamsAbstract
- Class TranslationRequestParamsAbstract @package Smartling\TranslationRequests\Params
Namespace
Smartling\TranslationRequests\ParamsCode
public function setTotalStringCount($totalStringCount) {
$this
->set('totalStringCount', (int) $totalStringCount);
return $this;
}