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 Psalm\Type\Atomic; /** * Denotes a non-empty-string where every charact..
Decoded Output download
<?php
namespace Psalm\Type\Atomic;
/**
* Denotes a non-empty-string where every character is lowercased. (which can also result from a `strtolower` call).
*
* @psalm-immutable
*/
final class TNonEmptyLowercaseString extends TNonEmptyString
{
public function getId(bool $exact = true, bool $nested = false): string
{
if (!$exact) {
return 'string';
}
return 'non-empty-lowercase-string';
}
/**
* @return false
*/
public function canBeFullyExpressedInPhp(int $analysis_php_version_id): bool
{
return false;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Psalm\Type\Atomic;
/**
* Denotes a non-empty-string where every character is lowercased. (which can also result from a `strtolower` call).
*
* @psalm-immutable
*/
final class TNonEmptyLowercaseString extends TNonEmptyString
{
public function getId(bool $exact = true, bool $nested = false): string
{
if (!$exact) {
return 'string';
}
return 'non-empty-lowercase-string';
}
/**
* @return false
*/
public function canBeFullyExpressedInPhp(int $analysis_php_version_id): bool
{
return false;
}
}
Function Calls
None |
Stats
MD5 | b238914d3ac673b472d06fbcecadd717 |
Eval Count | 0 |
Decode Time | 88 ms |