nova-cards icon indicating copy to clipboard operation
nova-cards copied to clipboard

preg_match deprication, null point prevention

Open erth5 opened this issue 2 years ago • 0 comments

Warning: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated

Resolution: vendor\stepanenko3\nova-cards\src\Http\Controllers\ScheduledJobsController.php

     20 $nextDueDate = $this->getNextDueDateForEvent($event, $timezone);
     21
  +  22 $command = $event->command ?? '';
     23
+-   24 preg_match("/artisan.*?\s(.*)/", $command, $matches);


erth5 avatar Jul 21 '23 11:07 erth5