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\PHPUnit\ValueObject; final class Annota..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\PHPUnit\ValueObject;
final class AnnotationWithValueToAttribute
{
/**
* @readonly
* @var string
*/
private $annotationName;
/**
* @readonly
* @var string
*/
private $attributeClass;
/**
* @var array<mixed, mixed>
* @readonly
*/
private $valueMap = [];
/**
* @param array<mixed, mixed> $valueMap
*/
public function __construct(string $annotationName, string $attributeClass, array $valueMap = [])
{
$this->annotationName = $annotationName;
$this->attributeClass = $attributeClass;
$this->valueMap = $valueMap;
}
public function getAnnotationName() : string
{
return $this->annotationName;
}
public function getAttributeClass() : string
{
return $this->attributeClass;
}
/**
* @return array<mixed, mixed>
*/
public function getValueMap() : array
{
return $this->valueMap;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\PHPUnit\ValueObject;
final class AnnotationWithValueToAttribute
{
/**
* @readonly
* @var string
*/
private $annotationName;
/**
* @readonly
* @var string
*/
private $attributeClass;
/**
* @var array<mixed, mixed>
* @readonly
*/
private $valueMap = [];
/**
* @param array<mixed, mixed> $valueMap
*/
public function __construct(string $annotationName, string $attributeClass, array $valueMap = [])
{
$this->annotationName = $annotationName;
$this->attributeClass = $attributeClass;
$this->valueMap = $valueMap;
}
public function getAnnotationName() : string
{
return $this->annotationName;
}
public function getAttributeClass() : string
{
return $this->attributeClass;
}
/**
* @return array<mixed, mixed>
*/
public function getValueMap() : array
{
return $this->valueMap;
}
}
Function Calls
None |
Stats
MD5 | 4c2286ccdf6abfd911776e5ebaa56175 |
Eval Count | 0 |
Decode Time | 131 ms |