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
*
* @param mixed $value
*
* @return mixed
*/
function startsWithLetter($value, string $prefix)
{
Assert::startsWithLetter($value, $prefix);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function nullOrStartsWithLetter($value, string $prefix)
{
Assert::nullOrStartsWithLetter($value, $prefix);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allStartsWithLetter($value, string $prefix)
{
Assert::allStartsWithLetter($value, $prefix);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allNullOrStartsWithLetter($value, string $prefix)
{
Assert::allNullOrStartsWithLetter($value, $prefix);
return $value;
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Webmozart\Assert\Tests\StaticAnalysis;
use Webmozart\Assert\Assert;
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function startsWithLetter($value, string $prefix)
{
Assert::startsWithLetter($value, $prefix);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function nullOrStartsWithLetter($value, string $prefix)
{
Assert::nullOrStartsWithLetter($value, $prefix);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allStartsWithLetter($value, string $prefix)
{
Assert::allStartsWithLetter($value, $prefix);
return $value;
}
/**
* @psalm-pure
*
* @param mixed $value
*
* @return mixed
*/
function allNullOrStartsWithLetter($value, string $prefix)
{
Assert::allNullOrStartsWithLetter($value, $prefix);
return $value;
}
Function Calls
None |
Stats
MD5 | 330eabbc53b917da5065979e22fbab98 |
Eval Count | 0 |
Decode Time | 74 ms |