DB\Jig\Mapper::skip PHP Method

skip() public method

Return record at specified offset using criteria of previous load() call and make it active
public skip ( $ofs = 1 ) : array
$ofs int
return array
    function skip($ofs = 1)
    {
        $this->document = ($out = parent::skip($ofs)) ? $out->document : [];
        $this->id = $out ? $out->id : NULL;
        if ($this->document && isset($this->trigger['load'])) {
            \Base::instance()->call($this->trigger['load'], $this);
        }
        return $out;
    }