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 Illuminate\Testing; use Illuminate\Testing\Concerns\RunsInParallel; if ..
Decoded Output download
<?php
namespace Illuminate\Testing;
use Illuminate\Testing\Concerns\RunsInParallel;
if (interface_exists(\ParaTest\RunnerInterface::class)) {
class ParallelRunner implements \ParaTest\RunnerInterface
{
use RunsInParallel;
/**
* Runs the test suite.
*
* @return int
*/
public function run(): int
{
return $this->execute();
}
}
} else {
class ParallelRunner implements \ParaTest\Runners\PHPUnit\RunnerInterface
{
use RunsInParallel;
/**
* Runs the test suite.
*
* @return void
*/
public function run(): void
{
$this->execute();
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Testing;
use Illuminate\Testing\Concerns\RunsInParallel;
if (interface_exists(\ParaTest\RunnerInterface::class)) {
class ParallelRunner implements \ParaTest\RunnerInterface
{
use RunsInParallel;
/**
* Runs the test suite.
*
* @return int
*/
public function run(): int
{
return $this->execute();
}
}
} else {
class ParallelRunner implements \ParaTest\Runners\PHPUnit\RunnerInterface
{
use RunsInParallel;
/**
* Runs the test suite.
*
* @return void
*/
public function run(): void
{
$this->execute();
}
}
}
Function Calls
None |
Stats
MD5 | 0d109006187653e06908599c7551dbc3 |
Eval Count | 0 |
Decode Time | 100 ms |