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\Modal\WireUi; use WireUi\Enum\Packs; use WireUi\Suppor..

Decoded Output download

<?php

namespace WireUi\Components\Modal\WireUi;

use WireUi\Enum\Packs;
use WireUi\Support\ComponentPack;

class Align extends ComponentPack
{
    protected function default(): string
    {
        return Packs\Align::START;
    }

    public function all(): array
    {
        return [
            Packs\Align::START => 'sm:items-start',
            Packs\Align::CENTER => 'sm:items-center',
            Packs\Align::END => 'sm:items-end',
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace WireUi\Components\Modal\WireUi;

use WireUi\Enum\Packs;
use WireUi\Support\ComponentPack;

class Align extends ComponentPack
{
    protected function default(): string
    {
        return Packs\Align::START;
    }

    public function all(): array
    {
        return [
            Packs\Align::START => 'sm:items-start',
            Packs\Align::CENTER => 'sm:items-center',
            Packs\Align::END => 'sm:items-end',
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 dfca3667bf36b61df7f5129c3181e8de
Eval Count 0
Decode Time 96 ms