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 Rmunate\Utilities\Bases; abstract class BaseSpellNumberValidator { /..
Decoded Output download
<?php
namespace Rmunate\Utilities\Bases;
abstract class BaseSpellNumberValidator
{
/**
* Create a new instance of the SpellNumberValidator class for the specified data type.
*
* @param string $type The data type to validate.
* @param mixed $value The value to validate.
*
* @return SpellNumberValidator
*/
public static function check(string $type, $value)
{
return new static($type, $value);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Rmunate\Utilities\Bases;
abstract class BaseSpellNumberValidator
{
/**
* Create a new instance of the SpellNumberValidator class for the specified data type.
*
* @param string $type The data type to validate.
* @param mixed $value The value to validate.
*
* @return SpellNumberValidator
*/
public static function check(string $type, $value)
{
return new static($type, $value);
}
}
Function Calls
None |
Stats
MD5 | 27341ac4a04faa97f5ff8e16bcdaf1a0 |
Eval Count | 0 |
Decode Time | 96 ms |