Skip to content

Commit f2606ef

Browse files
committed
more appeasement
1 parent 2ce0e7b commit f2606ef

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

classes/ETL/Aggregator/pdoAggregator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ protected function createDestinationTableObjects()
245245
if ( count($this->parsedDefinitionFile->table_definition) > 1 ) {
246246
$this->logger->warning(
247247
sprintf(
248-
"%s does not support multiple ETL destination tables, using first table",
249-
$this
248+
"%s does not support multiple ETL destination tables, using first table",
249+
$this
250250
)
251251
);
252252
}

classes/ETL/Maintenance/ExecuteSql.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,10 @@ public function execute(EtlOverseerOptions $etlOverseerOptions)
259259
}
260260

261261
$endTime = microtime(true);
262-
$this->logger->info("Finished executing statement " . $statementPositionDisplay,
262+
$this->logger->info(
263+
"Finished executing statement " . $statementPositionDisplay,
263264
[
264-
"action" => (string) $this . '-sql-' . $statementPosition,
265+
"action" => (string)$this . '-sql-' . $statementPosition,
265266
"rows" => $numRowsAffected,
266267
"start_time" => $sqlStartTime,
267268
"end_time" => $endTime,

classes/Rest/Controllers/WarehouseExportControllerProvider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ function ($request) use ($id) {
269269
throw new AccessDeniedHttpException('Exported data is not readable');
270270
}
271271

272-
$this->logger->info('',
272+
$this->logger->info(
273+
'',
273274
[
274275
'module' => self::LOG_MODULE,
275276
'message' => 'Sending data warehouse export file',

0 commit comments

Comments
 (0)