You are here

public function TranslationRequestParamsAbstract::setTitle 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::setTitle()

Parameters

$title:

Return value

$this

File

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

Class

TranslationRequestParamsAbstract
Class TranslationRequestParamsAbstract @package Smartling\TranslationRequests\Params

Namespace

Smartling\TranslationRequests\Params

Code

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