rector/rules/Renaming/ValueObject/RenameClassConstFetch.php
2021-05-10 22:23:08 +00:00

41 lines
1002 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Renaming\ValueObject;
use PHPStan\Type\ObjectType;
use Rector\Renaming\Contract\RenameClassConstFetchInterface;
final class RenameClassConstFetch implements \Rector\Renaming\Contract\RenameClassConstFetchInterface
{
/**
* @var string
*/
private $oldClass;
/**
* @var string
*/
private $oldConstant;
/**
* @var string
*/
private $newConstant;
public function __construct(string $oldClass, string $oldConstant, string $newConstant)
{
$this->oldClass = $oldClass;
$this->oldConstant = $oldConstant;
$this->newConstant = $newConstant;
}
public function getOldObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->oldClass);
}
public function getOldConstant() : string
{
return $this->oldConstant;
}
public function getNewConstant() : string
{
return $this->newConstant;
}
}