rector/rules/Php80/ValueObject/AnnotationToAttribute.php
Tomas Votruba c726969380 Updated Rector to commit fc10fce13dcf9767f54e4202b509020fed338645
fc10fce13d [Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
2021-12-04 12:47:17 +00:00

45 lines
899 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\ValueObject;
final class AnnotationToAttribute
{
/**
* @var class-string|string
* @readonly
*/
private $tag;
/**
* @var class-string
* @readonly
*/
private $attributeClass;
/**
* @param class-string|string $tag
* @param class-string $attributeClass
*/
public function __construct(string $tag, ?string $attributeClass = null)
{
$this->tag = $tag;
$this->attributeClass = $attributeClass;
}
/**
* @return class-string|string
*/
public function getTag() : string
{
return $this->tag;
}
/**
* @return class-string
*/
public function getAttributeClass() : string
{
if ($this->attributeClass === null) {
return $this->tag;
}
return $this->attributeClass;
}
}