public function Changes::setLimit in Replication 8
Same name and namespace in other branches
- 8.2 src/Changes/Changes.php \Drupal\replication\Changes\Changes::setLimit()
Set the limit of returned number of items.
Parameters
int $limit: The limit of returned items.
Return value
\Drupal\replication\Changes\ChangesInterface Returns $this.
Overrides ChangesInterface::setLimit
File
- src/
Changes/ Changes.php, line 154
Class
Namespace
Drupal\replication\ChangesCode
public function setLimit($limit) {
$this->limit = $limit;
return $this;
}