use the variable "newName" instead of the old name for the class type
FileRenameHandle:create({
oldUrl: currentUrl,
- newUrl: Uni.file('${directory}/${fileName}${extension}'),
+ newUrl: Uni.file('${directory}/${newName}${extension}'),
});
|
FileRenameHandler.create({ |
|
oldUri: currentUri, |
|
newUri: Uri.file(`${directory}/${fileName}${extension}`), |
|
}); |
use the variable "newName" instead of the old name for the class type
FileRenameHandle:create({ oldUrl: currentUrl, - newUrl: Uni.file('${directory}/${fileName}${extension}'), + newUrl: Uni.file('${directory}/${newName}${extension}'), });php-namespace-refactor/src/app/services/rename/FileRenameResolver.ts
Lines 49 to 52 in 9618edb