From 2a2cde8a2da52eceda90a10fe4eac6cf13a0a698 Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Wed, 29 Apr 2020 08:24:07 +0000 Subject: [PATCH] Modify the message for clarity. #390 --- src/Command/ImportSAPBatteryCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Command/ImportSAPBatteryCommand.php b/src/Command/ImportSAPBatteryCommand.php index 439cb230..367948ee 100644 --- a/src/Command/ImportSAPBatteryCommand.php +++ b/src/Command/ImportSAPBatteryCommand.php @@ -187,21 +187,21 @@ class ImportSAPBatteryCommand extends Command throw new Exception('The file "' . $report_file . '" could be opened.'); } - fputs($fh, 'Brands not added: ' . "\n"); + fputs($fh, 'Brands Already in Database: ' . "\n"); foreach ($brands as $brand) { fputs($fh, $brand, strlen($brand)); fputs($fh, "\n"); } - fputs($fh, 'Sizes not added: ' . "\n"); + fputs($fh, 'Sizes Already in Database: ' . "\n"); foreach ($sizes as $size) { fputs($fh, $size, strlen($size)); fputs($fh, "\n"); } - fputs($fh, 'SKUs not added: ' . "\n"); + fputs($fh, 'SAP Codes Already in Database: ' . "\n"); foreach ($batts as $batt) { fputs($fh, $batt, strlen($batt));