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\Exceptions; class MethodNotFoundException extends \Exception { ..

Decoded Output download

<?php

namespace Livewire\Exceptions;

class MethodNotFoundException extends \Exception
{
    use BypassViewHandler;

    public function __construct($method)
    {
        parent::__construct(
            "Unable to call component method. Public method [{$method}] not found on component"
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Livewire\Exceptions;

class MethodNotFoundException extends \Exception
{
    use BypassViewHandler;

    public function __construct($method)
    {
        parent::__construct(
            "Unable to call component method. Public method [{$method}] not found on component"
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 74aed935073571b851d43484cd132f49
Eval Count 0
Decode Time 103 ms