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\Auth; use App\Abstracts\Job; use App\Interfaces\Job\ShouldUpdat..
Decoded Output download
<?php
namespace App\Jobs\Auth;
use App\Abstracts\Job;
use App\Interfaces\Job\ShouldUpdate;
use App\Models\Auth\Permission;
class UpdatePermission extends Job implements ShouldUpdate
{
public function handle(): Permission
{
\DB::transaction(function () {
$this->model->update($this->request->all());
});
return $this->model;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Jobs\Auth;
use App\Abstracts\Job;
use App\Interfaces\Job\ShouldUpdate;
use App\Models\Auth\Permission;
class UpdatePermission extends Job implements ShouldUpdate
{
public function handle(): Permission
{
\DB::transaction(function () {
$this->model->update($this->request->all());
});
return $this->model;
}
}
Function Calls
None |
Stats
MD5 | 15c93967982ed4c8255f3d37df690f74 |
Eval Count | 0 |
Decode Time | 90 ms |