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 declare(strict_types=1); namespace Pest\Concerns; use Pest\Expectation; /** * @..
Decoded Output download
<?php
declare(strict_types=1);
namespace Pest\Concerns;
use Pest\Expectation;
/**
* @internal
*/
trait Expectable
{
/**
* @template TValue
*
* Creates a new Expectation.
*
* @param TValue $value
* @return Expectation<TValue>
*/
public function expect(mixed $value): Expectation
{
return new Expectation($value);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Pest\Concerns;
use Pest\Expectation;
/**
* @internal
*/
trait Expectable
{
/**
* @template TValue
*
* Creates a new Expectation.
*
* @param TValue $value
* @return Expectation<TValue>
*/
public function expect(mixed $value): Expectation
{
return new Expectation($value);
}
}
Function Calls
None |
Stats
MD5 | 123335124cf2a3050970fd9db39fb0a2 |
Eval Count | 0 |
Decode Time | 70 ms |