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 Livewire\Features\SupportLifecycleHooks; use Livewire\Exceptions\BypassV..

Decoded Output download

<?php

namespace Livewire\Features\SupportLifecycleHooks;

use Livewire\Exceptions\BypassViewHandler;

class DirectlyCallingLifecycleHooksNotAllowedException extends \Exception
{
    use BypassViewHandler;

    public function __construct($method, $component)
    {
        parent::__construct(
            "Unable to call lifecycle method [{$method}] directly on component: [{$component}]"
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Livewire\Features\SupportLifecycleHooks;

use Livewire\Exceptions\BypassViewHandler;

class DirectlyCallingLifecycleHooksNotAllowedException extends \Exception
{
    use BypassViewHandler;

    public function __construct($method, $component)
    {
        parent::__construct(
            "Unable to call lifecycle method [{$method}] directly on component: [{$component}]"
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 6e9f7b3a5506fcb8b665cca2929e0a55
Eval Count 0
Decode Time 108 ms