考虑以下代码
$schedule->command('products:update')->name('Update products')->daily()->after(function() {
// how do I get the name here?
});
如何在闭包内访问命令的名称(“ products:update”或“ Update products”?)]
考虑以下代码$ schedule-> command('products:update')-> name('Update products')-> daily()-> after(function(){//如何在这里获得名称? });如何访问...的名称...
我认为它的工作和在控制台上的内核文件中。