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 PropertyNotFoundException extends \Exception ..
Decoded Output download
<?php
namespace Livewire\Exceptions;
class PropertyNotFoundException extends \Exception
{
use BypassViewHandler;
public function __construct($property, $component)
{
parent::__construct(
"Property [\${$property}] not found on component: [{$component}]"
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Livewire\Exceptions;
class PropertyNotFoundException extends \Exception
{
use BypassViewHandler;
public function __construct($property, $component)
{
parent::__construct(
"Property [\${$property}] not found on component: [{$component}]"
);
}
}
Function Calls
None |
Stats
MD5 | 1d8756ba9446a85b2f1883a7893a725e |
Eval Count | 0 |
Decode Time | 113 ms |