mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-13 03:45:21 +01:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Renaming\ValueObject;
|
|
|
|
use PHPStan\Type\ObjectType;
|
|
use Rector\Renaming\Contract\RenameClassConstFetchInterface;
|
|
final class RenameClassAndConstFetch implements \Rector\Renaming\Contract\RenameClassConstFetchInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $oldClass;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $oldConstant;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $newClass;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $newConstant;
|
|
public function __construct(string $oldClass, string $oldConstant, string $newClass, string $newConstant)
|
|
{
|
|
$this->oldClass = $oldClass;
|
|
$this->oldConstant = $oldConstant;
|
|
$this->newClass = $newClass;
|
|
$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;
|
|
}
|
|
public function getNewClass() : string
|
|
{
|
|
return $this->newClass;
|
|
}
|
|
}
|