class = $class; $this->oldPropertyName = $oldPropertyName; $this->newMethodName = $newMethodName; } public function getObjectType() : \PHPStan\Type\ObjectType { return new \PHPStan\Type\ObjectType($this->class); } public function getOldPropertyName() : string { return $this->oldPropertyName; } public function getNewMethodName() : string { return $this->newMethodName; } }