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));