/opt/cpanel/ea-wappspector/vendor/rector/rector/rules/Renaming/ValueObject
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/rules/Renaming/ValueObject/RenameProperty.php (1042B)
type = $type;
$this->oldProperty = $oldProperty;
$this->newProperty = $newProperty;
RectorAssert::className($type);
RectorAssert::propertyName($oldProperty);
RectorAssert::propertyName($newProperty);
}
public function getObjectType() : ObjectType
{
return new ObjectType($this->type);
}
public function getOldProperty() : string
{
return $this->oldProperty;
}
public function getNewProperty() : string
{
return $this->newProperty;
}
}