SELECT( 'qc_value', 'qc_namespace', 'qc_title' ) ->FROM( 'querycache' ) ->WHERE( 'qc_type' )->EQUAL_TO( UnconvertedInfoboxesPage::UNCONVERTED_INFOBOXES_TYPE ) ->run( $dbr, function ( ResultWrapper $result ) { $out = [ ]; while ( $row = $result->fetchRow() ) { $out[] = [ 'pageid' => $row[ 'qc_value' ], 'title' => $row[ 'qc_title' ], 'ns' => $row[ 'qc_namespace' ] ]; } return $out; } ); } ); return $data; } }