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 App\Jobs\Banking; use App\Abstracts\Job; use App\Interfaces\Job\ShouldDe..
Decoded Output download
<?php
namespace App\Jobs\Banking;
use App\Abstracts\Job;
use App\Interfaces\Job\ShouldDelete;
class DeleteTransfer extends Job implements ShouldDelete
{
public function handle(): bool
{
\DB::transaction(function () {
$this->model->expense_transaction->delete();
$this->model->income_transaction->delete();
$this->model->delete();
});
return true;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Jobs\Banking;
use App\Abstracts\Job;
use App\Interfaces\Job\ShouldDelete;
class DeleteTransfer extends Job implements ShouldDelete
{
public function handle(): bool
{
\DB::transaction(function () {
$this->model->expense_transaction->delete();
$this->model->income_transaction->delete();
$this->model->delete();
});
return true;
}
}
Function Calls
None |
Stats
MD5 | 2857787505d0027047ba8b1c932eee52 |
Eval Count | 0 |
Decode Time | 110 ms |