diff --git a/src/Command/WarrantySMSCommand.php b/src/Command/WarrantySMSCommand.php index 77868a9b..735dba7b 100644 --- a/src/Command/WarrantySMSCommand.php +++ b/src/Command/WarrantySMSCommand.php @@ -25,7 +25,7 @@ class WarrantySMSCommand extends Command protected function configure() { $this->setName('warranty:sms') - ->setDescription('Sends an SMS message to users whose warranty expired one month ago.') + ->setDescription('Sends an SMS message to users whose warranty expired 45 days ago.') ->setHelp('Sends warranty SMS.') ->addArgument('date', InputArgument::OPTIONAL, 'Date to use as basis of expiration. Defaults to current date.'); } @@ -50,7 +50,7 @@ class WarrantySMSCommand extends Command $date = new DateTime(); // -1 month - $date->modify('-1 month'); + $date->modify('-45 day'); $warrs = $this->em->getRepository(Warranty::class)->findBy(['date_expire' => $date]);