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 EventHandlerDoesNotExist extends \Exception {..
Decoded Output download
<?php
namespace Livewire\Exceptions;
class EventHandlerDoesNotExist extends \Exception
{
public function __construct(public readonly string $eventName)
{
parent::__construct('Handler for event ' . $eventName . ' does not exist');
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Livewire\Exceptions;
class EventHandlerDoesNotExist extends \Exception
{
public function __construct(public readonly string $eventName)
{
parent::__construct('Handler for event ' . $eventName . ' does not exist');
}
}
Function Calls
None |
Stats
MD5 | 8213adc8eab0baac329f7074d6901728 |
Eval Count | 0 |
Decode Time | 90 ms |