📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 23:59:38
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-phpunit
/
src
/
ValueObject
✏️
Editing: AnnotationWithValueToAttribute.php
<?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; } }
💾 Save Changes
❌ Cancel