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 Rector\Symfony\ValueObject; final class ClassN..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\Symfony\ValueObject;
final class ClassNameAndFilePath
{
/**
* @readonly
* @var string
*/
private $className;
/**
* @readonly
* @var string
*/
private $filePath;
public function __construct(string $className, string $filePath)
{
$this->className = $className;
$this->filePath = $filePath;
}
public function getClassName() : string
{
return $this->className;
}
public function getFilePath() : string
{
return $this->filePath;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\Symfony\ValueObject;
final class ClassNameAndFilePath
{
/**
* @readonly
* @var string
*/
private $className;
/**
* @readonly
* @var string
*/
private $filePath;
public function __construct(string $className, string $filePath)
{
$this->className = $className;
$this->filePath = $filePath;
}
public function getClassName() : string
{
return $this->className;
}
public function getFilePath() : string
{
return $this->filePath;
}
}
Function Calls
None |
Stats
MD5 | 0dc6f3725d5b39f62d581fbd150ff9fb |
Eval Count | 0 |
Decode Time | 115 ms |