Page MenuHomePhorge

WalletCharge.php
No OneTemporary

Size
749 B
Referenced Files
None
Subscribers
None

WalletCharge.php

<?php
namespace App\Console\Commands\Job;
use App\Console\Command;
use App\Wallet;
class WalletCharge extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'job:walletcharge {wallet}';
/**
* The console command description.
*
* @var string
*/
protected $description = "Execute the WalletCharge job (again).";
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$wallet = $this->getWallet($this->argument('wallet'));
if (!$wallet) {
return 1;
}
$job = new \App\Jobs\WalletCharge($wallet);
$job->handle();
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Jul 9, 7:40 PM (3 h, 1 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1057043
Default Alt Text
WalletCharge.php (749 B)

Event Timeline