40 ->where( [
'rev_page' => $this->page->getId() ] )
41 ->orderBy(
'rev_id', SelectQueryBuilder::SORT_DESC );
42 if ( $this->ids !==
null ) {
43 $queryBuilder->andWhere( [
'rev_id' => array_map(
'intval', $this->ids ) ] );
45 return $queryBuilder->caller( __METHOD__ )->fetchResultSet();
54class_alias( RevisionList::class,
'RevisionList' );