在钩子内获取命令名

问题描述 投票:0回答:1

考虑以下代码

$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(){//如何在这里获得名称? });如何访问...的名称...

laravel cron hook schedule
1个回答
0
投票

我认为它的工作和在控制台上的内核文件中。

© www.soinside.com 2019 - 2024. All rights reserved.