rector/rules/Php80/ValueObject/AnnotationPropertyToAttributeClass.php
Tomas Votruba 503a6059f8 Updated Rector to commit a8922f7431c9c9188be501107ee7819e0130da4c
a8922f7431 skip temporarily match + throws downagrade in symfony/console, very unlikely to run
2023-06-11 23:01:39 +00:00

50 lines
1.2 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\ValueObject;
use Rector\Core\Validation\RectorAssert;
final class AnnotationPropertyToAttributeClass
{
/**
* @readonly
* @var string
*/
private $attributeClass;
/**
* @readonly
* @var string|int|null
*/
private $annotationProperty = null;
/**
* @readonly
* @var bool
*/
private $doesNeedNewImport = \false;
/**
* @param string|int|null $annotationProperty
*/
public function __construct(string $attributeClass, $annotationProperty = null, bool $doesNeedNewImport = \false)
{
$this->attributeClass = $attributeClass;
$this->annotationProperty = $annotationProperty;
$this->doesNeedNewImport = $doesNeedNewImport;
RectorAssert::className($attributeClass);
}
/**
* @return string|int|null
*/
public function getAnnotationProperty()
{
return $this->annotationProperty;
}
public function getAttributeClass() : string
{
return $this->attributeClass;
}
public function doesNeedNewImport() : bool
{
return $this->doesNeedNewImport;
}
}