BookStack\PageRevision::getPrevious PHP Метод

getPrevious() публичный Метод

Get the previous revision for the same page if existing
public getPrevious ( ) : PageRevision | null
Результат PageRevision | null
    public function getPrevious()
    {
        if ($id = static::where('page_id', '=', $this->page_id)->where('id', '<', $this->id)->max('id')) {
            return static::find($id);
        }
        return null;
    }