You are here

public function ListJobsParameters::setLimit in TMGMT Translator Smartling 8.4

Same name and namespace in other branches
  1. 8.3 vendor/smartling/api-sdk-php/src/Jobs/Params/ListJobsParameters.php \Smartling\Jobs\Params\ListJobsParameters::setLimit()
1 call to ListJobsParameters::setLimit()
ListJobsParameters::__construct in vendor/smartling/api-sdk-php/src/Jobs/Params/ListJobsParameters.php

File

vendor/smartling/api-sdk-php/src/Jobs/Params/ListJobsParameters.php, line 27

Class

ListJobsParameters

Namespace

Smartling\Jobs\Params

Code

public function setLimit($limit) {
  if (null !== $limit && 0 < (int) $limit) {
    $this
      ->set('limit', (int) $limit);
  }
}