diff --git a/src/app/Console/Commands/Job/WalletCharge.php b/src/app/Console/Commands/Job/WalletCharge.php new file mode 100644 index 00000000..1e8ff05e --- /dev/null +++ b/src/app/Console/Commands/Job/WalletCharge.php @@ -0,0 +1,40 @@ +getWallet($this->argument('wallet')); + + if (!$wallet) { + return 1; + } + + $job = new \App\Jobs\WalletCharge($wallet); + $job->handle(); + } +}