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 e2e; class TimeoutsE2ETest extends AbstractE2ETe..
Decoded Output download
<?php declare(strict_types=1);
namespace e2e;
class TimeoutsE2ETest extends AbstractE2ETest
{
private const RECIPE = __DIR__ . '/recipe/timeouts.php';
/**
* @group e2e
*/
public function testRunWithPlaceholders(): void
{
$this->tester->run([
'-f' => self::RECIPE,
'test:timeouts',
'all',
'-v',
]);
$display = trim($this->tester->getDisplay());
self::assertEquals(0, $this->tester->getStatusCode(), $display);
self::assertStringContainsString('+timeout', $display);
}
}
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1);
namespace e2e;
class TimeoutsE2ETest extends AbstractE2ETest
{
private const RECIPE = __DIR__ . '/recipe/timeouts.php';
/**
* @group e2e
*/
public function testRunWithPlaceholders(): void
{
$this->tester->run([
'-f' => self::RECIPE,
'test:timeouts',
'all',
'-v',
]);
$display = trim($this->tester->getDisplay());
self::assertEquals(0, $this->tester->getStatusCode(), $display);
self::assertStringContainsString('+timeout', $display);
}
}
Function Calls
None |
Stats
MD5 | 96caa97a09c5de5ab90448bb0191b456 |
Eval Count | 0 |
Decode Time | 106 ms |