File: /var/www/vhost/disk-apps/qas.sports-crowd.com/app/Console/Commands/PaymentTransactions.php
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Http\Controllers\PaymentTransactionController;
class PaymentTransactions extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'sportscrowd:paymentTransactions';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Valida pagos en payment_transactions cada cierto tiempo';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$paymentTransactionController = new PaymentTransactionController();
$paymentTransactionController->validatePayments();
}
}