考虑以下代码
$schedule->command('products:update')->name('Update products')->daily()->after(function() {
// how do I get the name here?
});
如何访问闭包中的命令名称("products:update"或"update products"(?
我认为它的工作原理和控制台上的内核文件。
protected $commands = [
'AppConsoleCommandsPopulateGoogleService'
];
$schedule->command('PopulateGoogleService')->weekly()->sundays()->at('02:00')
->timezone('Asia/Kolkata')
->sendOutputTo(storage_path('logs/cron.log'));