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 Symplify\RuleDocGenerator\ValueObject\CodeSampl..
Decoded Output download
<?php
declare (strict_types=1);
namespace Symplify\RuleDocGenerator\ValueObject\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\AbstractCodeSample;
final class ExtraFileCodeSample extends AbstractCodeSample
{
/**
* @readonly
* @var string
*/
private $extraFile;
public function __construct(string $badCode, string $goodCode, string $extraFile)
{
$this->extraFile = $extraFile;
parent::__construct($badCode, $goodCode);
}
public function getExtraFile() : string
{
return $this->extraFile;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Symplify\RuleDocGenerator\ValueObject\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\AbstractCodeSample;
final class ExtraFileCodeSample extends AbstractCodeSample
{
/**
* @readonly
* @var string
*/
private $extraFile;
public function __construct(string $badCode, string $goodCode, string $extraFile)
{
$this->extraFile = $extraFile;
parent::__construct($badCode, $goodCode);
}
public function getExtraFile() : string
{
return $this->extraFile;
}
}
Function Calls
None |
Stats
MD5 | 6758345593e90637d604c3f99a6cbf63 |
Eval Count | 0 |
Decode Time | 113 ms |