This commit is contained in:
2021-04-19 19:39:48 +09:00
parent e21fcd784c
commit 26c484d30c
4 changed files with 12 additions and 12 deletions
@@ -4,7 +4,7 @@ namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Jobs\Commands\MiningTaxes\SendMiningTaxesInvoices;
use App\Jobs\Commands\MiningTaxes\SendMiningTaxesInvoices as SendInvoice;
class ExecuteSendMiningTaxesInvoiceCommand extends Command
{
@@ -13,7 +13,7 @@ class ExecuteSendMiningTaxesInvoiceCommand extends Command
*
* @var string
*/
protected $signature = 'miningtax:send';
protected $signature = 'mt:send';
/**
* The console command description.
@@ -39,7 +39,7 @@ class ExecuteSendMiningTaxesInvoiceCommand extends Command
*/
public function handle()
{
SendMiningTaxesInvoices::dispatch();
SendInvoice::dispatch();
return 0;
}