79135119

Date: 2024-10-28 21:16:48
Score: 0.5
Natty:
Report link

Task scheduling can also be done in /bootstrap/app.php using withSchedule:

use Illuminate\Console\Scheduling\Schedule;

->withSchedule(function (Schedule $schedule) {
    $schedule->command('some:signature')->daily();
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: polycode