rector/rules/Transform/ValueObject/ClassConstFetchToValue.php
Tomas Votruba cdc3b7adef Updated Rector to commit f451b0b8e1
f451b0b8e1 [PHP 8.0] Bump to promoted properties (#4)
2021-05-10 23:39:21 +00:00

43 lines
832 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
final class ClassConstFetchToValue
{
/**
* @var string
*/
private $class;
/**
* @var string
*/
private $constant;
private $value;
/**
* @param mixed $value
*/
public function __construct(string $class, string $constant, $value)
{
$this->class = $class;
$this->constant = $constant;
$this->value = $value;
}
public function getObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->class);
}
public function getConstant() : string
{
return $this->constant;
}
/**
* @return mixed
*/
public function getValue()
{
return $this->value;
}
}