mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-11 11:11:12 +01:00
40 lines
843 B
PHP
40 lines
843 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Renaming\ValueObject;
|
|
|
|
use PHPStan\Type\ObjectType;
|
|
final class RenameProperty
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $type;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $oldProperty;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $newProperty;
|
|
public function __construct(string $type, string $oldProperty, string $newProperty)
|
|
{
|
|
$this->type = $type;
|
|
$this->oldProperty = $oldProperty;
|
|
$this->newProperty = $newProperty;
|
|
}
|
|
public function getObjectType() : \PHPStan\Type\ObjectType
|
|
{
|
|
return new \PHPStan\Type\ObjectType($this->type);
|
|
}
|
|
public function getOldProperty() : string
|
|
{
|
|
return $this->oldProperty;
|
|
}
|
|
public function getNewProperty() : string
|
|
{
|
|
return $this->newProperty;
|
|
}
|
|
}
|