mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-11 11:11:12 +01:00
41 lines
1002 B
PHP
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;
|
|
}
|
|
}
|