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\Common; use App\Abstracts\Job; use App\Interfaces\Job\HasOwner;..
Decoded Output download
<?php
namespace App\Jobs\Common;
use App\Abstracts\Job;
use App\Interfaces\Job\HasOwner;
use App\Interfaces\Job\HasSource;
use App\Interfaces\Job\ShouldCreate;
use App\Models\Common\Report;
class CreateReport extends Job implements HasOwner, HasSource, ShouldCreate
{
public function handle(): Report
{
\DB::transaction(function () {
$this->model = Report::create($this->request->all());
});
return $this->model;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Jobs\Common;
use App\Abstracts\Job;
use App\Interfaces\Job\HasOwner;
use App\Interfaces\Job\HasSource;
use App\Interfaces\Job\ShouldCreate;
use App\Models\Common\Report;
class CreateReport extends Job implements HasOwner, HasSource, ShouldCreate
{
public function handle(): Report
{
\DB::transaction(function () {
$this->model = Report::create($this->request->all());
});
return $this->model;
}
}
Function Calls
None |
Stats
MD5 | e33489fb825fcd2d95a75fcaacc32689 |
Eval Count | 0 |
Decode Time | 113 ms |