Skip to content

Commit d5d7a1d

Browse files
committed
Code review fix
1 parent ab8fa66 commit d5d7a1d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

SalesOrdersDataExporter/Console/Command/Export.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ private function ensureAssignedUuids(DateTime $from, DateTime $to, OutputInterfa
8787

8888
try {
8989
return $this->linkCommand->
90-
prepareToExport(10000, $output, $from->format(DateTimeInterface::W3C), $to->format(DateTimeInterface::W3C));
90+
prepareForExport(10000, $output, $from->format(DateTimeInterface::W3C),
91+
$to->format(DateTimeInterface::W3C));
9192
} catch (ExceptionInterface $e) {
9293
$this->logger->error(
9394
sprintf('Command "commerce-data-export:orders:link" failed. Message: %s', $e->getMessage())

SalesOrdersDataExporter/Console/Command/Link.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
153153
* @param OutputInterface $output
154154
* @return int
155155
*/
156-
public function prepareToExport(
156+
public function prepareForExport(
157157
int $batchSize,
158158
OutputInterface $output,
159159
string $from = null,

0 commit comments

Comments
 (0)