oldType = $oldType; $this->oldMethod = $oldMethod; $this->newProperty = $newProperty; RectorAssert::className($oldType); RectorAssert::methodName($oldMethod); RectorAssert::propertyName($newProperty); } public function getOldObjectType() : ObjectType { return new ObjectType($this->oldType); } public function getNewProperty() : string { return $this->newProperty; } public function getOldMethod() : string { return $this->oldMethod; } }