Builder::offset( int $offset )

Set the offset for the current query.


Parameters

$offset

(int) (Required) The offset applied to the current query.


Top ↑

Return

($this) Instance to the current class.


Top ↑

Source

File: src/Events/Custom_Tables/V1/Models/Builder.php

	public function offset( $offset ) {
		$this->offset = max( 0, (int) $offset );

		return $this;
	}

Top ↑

Changelog

Changelog
Version Description
6.0.0 Introduced.