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 WireUi\Components\Dialog; use Illuminate\Contracts\View\View; use WireUi..

Decoded Output download

<?php

namespace WireUi\Components\Dialog;

use Illuminate\Contracts\View\View;
use WireUi\Actions\Dialog as DialogAction;
use WireUi\View\WireUiComponent;

class Index extends WireUiComponent
{
    public string $dialog = '';

    protected array $packs = ['align', 'blur', 'width', 'type'];

    protected array $props = [
        'id' => null,
        'title' => null,
        'spacing' => null,
        'z-index' => null,
        'blurless' => false,
        'description' => null,
    ];

    protected function processed(): void
    {
        $this->dialog = DialogAction::makeEventName($this->id);

        $this->setVariables('dialog');
    }

    public function blade(): View
    {
        return view('wireui-dialog::index');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace WireUi\Components\Dialog;

use Illuminate\Contracts\View\View;
use WireUi\Actions\Dialog as DialogAction;
use WireUi\View\WireUiComponent;

class Index extends WireUiComponent
{
    public string $dialog = '';

    protected array $packs = ['align', 'blur', 'width', 'type'];

    protected array $props = [
        'id' => null,
        'title' => null,
        'spacing' => null,
        'z-index' => null,
        'blurless' => false,
        'description' => null,
    ];

    protected function processed(): void
    {
        $this->dialog = DialogAction::makeEventName($this->id);

        $this->setVariables('dialog');
    }

    public function blade(): View
    {
        return view('wireui-dialog::index');
    }
}

Function Calls

None

Variables

None

Stats

MD5 f4883be294a93637d619d6007a74827d
Eval Count 0
Decode Time 76 ms