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\ContactPerson;
class CreateContactPerson extends Job implements HasOwner, HasSource, ShouldCreate
{
public function handle(): ContactPerson
{
\DB::transaction(function () {
$this->model = ContactPerson::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\ContactPerson;
class CreateContactPerson extends Job implements HasOwner, HasSource, ShouldCreate
{
public function handle(): ContactPerson
{
\DB::transaction(function () {
$this->model = ContactPerson::create($this->request->all());
});
return $this->model;
}
}
Function Calls
None |
Stats
MD5 | 63ba3291e77d90272454020885247ed4 |
Eval Count | 0 |
Decode Time | 128 ms |