Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Webkul\Core\Console\Commands; use Illuminate\Console\Command; use Webkul..
Decoded Output download
<?php
namespace Webkul\Core\Console\Commands;
use Illuminate\Console\Command;
use Webkul\Sales\Models\Invoice;
class InvoiceOverdueCron extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'invoice:cron';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Invoice reminders';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
// Get 'overdue' invoices
Invoice::inOverdueAndRemindersLimit()
->get()
->each(function (Invoice $invoice) {
$invoice->sendInvoiceReminder();
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Webkul\Core\Console\Commands;
use Illuminate\Console\Command;
use Webkul\Sales\Models\Invoice;
class InvoiceOverdueCron extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'invoice:cron';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Invoice reminders';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
// Get 'overdue' invoices
Invoice::inOverdueAndRemindersLimit()
->get()
->each(function (Invoice $invoice) {
$invoice->sendInvoiceReminder();
});
}
}
Function Calls
None |
Stats
MD5 | 7a275340d6404de0b35acf132a2acadf |
Eval Count | 0 |
Decode Time | 127 ms |