Builder::offset( int $offset )
Set the offset for the current query.
Contents
Parameters
- $offset
-
(int) (Required) The offset applied to the current query.
Return
($this) Instance to the current class.
Source
File: src/Events/Custom_Tables/V1/Models/Builder.php
public function offset( $offset ) {
$this->offset = max( 0, (int) $offset );
return $this;
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |