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\Widget;

class CreateWidget extends Job implements HasOwner, HasSource, ShouldCreate
{
    public function handle(): Widget
    {
        \DB::transaction(function () {
            $this->widget = Widget::create($this->request->all());
        });

        return $this->widget;
    }
}
 ?>

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\Widget;

class CreateWidget extends Job implements HasOwner, HasSource, ShouldCreate
{
    public function handle(): Widget
    {
        \DB::transaction(function () {
            $this->widget = Widget::create($this->request->all());
        });

        return $this->widget;
    }
}

Function Calls

None

Variables

None

Stats

MD5 fbfb932e2b62ce9f6408db773a0f25cc
Eval Count 0
Decode Time 76 ms