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\SupportComputed; use Exception; class CannotCallCompu..

Decoded Output download

<?php

namespace Livewire\Features\SupportComputed;

use Exception;

class CannotCallComputedDirectlyException extends Exception
{
    function __construct($componentName, $methodName)
    {
        parent::__construct(
            "Cannot call [{$methodName}()] computed property method directly on component: {$componentName}"
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Livewire\Features\SupportComputed;

use Exception;

class CannotCallComputedDirectlyException extends Exception
{
    function __construct($componentName, $methodName)
    {
        parent::__construct(
            "Cannot call [{$methodName}()] computed property method directly on component: {$componentName}"
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 944f813cc4253338abdbe21c5222daee
Eval Count 0
Decode Time 117 ms