rename executeQuery method to a better name

This commit is contained in:
Daniel Seifert 2021-04-28 13:40:54 +02:00
parent e88dd1624c
commit 98fd499599
Signed by: DanielS
GPG Key ID: 8A7C4C6ED1915C6F
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ abstract class ExportBase implements QueryBase
*/
public function run($format = RendererBridge::FORMAT_CSV)
{
[ $rows, $fieldNames ] = $this->executeQuery( $this->getQuery() );
[ $rows, $fieldNames ] = $this->getExportData( $this->getQuery() );
$content = $this->renderContent($rows, $fieldNames, $format);
@ -132,7 +132,7 @@ abstract class ExportBase implements QueryBase
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
*/
protected function executeQuery( array $query ): array
public function getExportData( array $query ): array
{
[ $queryString, $parameters ] = $query;