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 Webmozart\Assert\Tests\StaticAnalysis; use Webmozart\Assert\Assert; /**..
Decoded Output download
<?php
namespace Webmozart\Assert\Tests\StaticAnalysis;
use Webmozart\Assert\Assert;
/**
* @psalm-pure
*
* @return true
*/
function notFalseBool(bool $value): bool
{
Assert::notFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param false|string $value
*/
function notFalseUnion($value): string
{
Assert::notFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function nullOrNotFalse($value)
{
Assert::nullOrNotFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allNotFalse($value)
{
Assert::allNotFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allNullOrNotFalse($value)
{
Assert::allNullOrNotFalse($value);
return $value;
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Webmozart\Assert\Tests\StaticAnalysis;
use Webmozart\Assert\Assert;
/**
* @psalm-pure
*
* @return true
*/
function notFalseBool(bool $value): bool
{
Assert::notFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param false|string $value
*/
function notFalseUnion($value): string
{
Assert::notFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function nullOrNotFalse($value)
{
Assert::nullOrNotFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allNotFalse($value)
{
Assert::allNotFalse($value);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allNullOrNotFalse($value)
{
Assert::allNullOrNotFalse($value);
return $value;
}
Function Calls
None |
Stats
MD5 | 4148c4072e1d3b848a2f7b0a9888f48b |
Eval Count | 0 |
Decode Time | 89 ms |