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 Tests\CustomTestCase; use PHPUnit\Framework\Te..
Decoded Output download
<?php
declare(strict_types=1);
namespace Tests\CustomTestCase;
use PHPUnit\Framework\TestCase;
use function PHPUnit\FrameworkssertTrue;
class ParentTest extends TestCase
{
private function getEntity(): bool
{
return false;
}
/** @test */
public function testOverrideMethod(): void
{
assertTrue($this->getEntity() || true);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Tests\CustomTestCase;
use PHPUnit\Framework\TestCase;
use function PHPUnit\Framework\assertTrue;
class ParentTest extends TestCase
{
private function getEntity(): bool
{
return false;
}
/** @test */
public function testOverrideMethod(): void
{
assertTrue($this->getEntity() || true);
}
}
Function Calls
None |
Stats
MD5 | e3033bd710ae64ca4b2139a5cf225db1 |
Eval Count | 0 |
Decode Time | 99 ms |