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 WireUi\Exceptions; use Exception; class WireUiMaskableException extends..
Decoded Output download
<?php
namespace WireUi\Exceptions;
use Exception;
class WireUiMaskableException extends Exception
{
public function __construct(object $component)
{
$class = get_class($component);
parent::__construct("Implement this method [getInputMask] on your Component [{$class}] or pass [mask] in parameters.", 500);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace WireUi\Exceptions;
use Exception;
class WireUiMaskableException extends Exception
{
public function __construct(object $component)
{
$class = get_class($component);
parent::__construct("Implement this method [getInputMask] on your Component [{$class}] or pass [mask] in parameters.", 500);
}
}
Function Calls
None |
Stats
MD5 | 77f057565466b322f7dbe6693c9d41a9 |
Eval Count | 0 |
Decode Time | 84 ms |