Skip to content

Commit 3cb15e7

Browse files
committed
Update index.ts
1 parent 8d2a0a3 commit 3cb15e7

File tree

1 file changed

+4
-1
lines changed
  • src/languagePlugins/php/dependencyFormatting

1 file changed

+4
-1
lines changed

src/languagePlugins/php/dependencyFormatting/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ export class PHPDependencyFormatter {
1717
constructor(
1818
files: Map<string, { path: string; content: string }>,
1919
) {
20-
const parsedFiles: Map<string, { path: string; rootNode: Parser.SyntaxNode }> = new Map();
20+
const parsedFiles: Map<
21+
string,
22+
{ path: string; rootNode: Parser.SyntaxNode }>
23+
= new Map();
2124
for (const [k, v] of files) {
2225
parsedFiles.set(k, {
2326
path: v.path,

0 commit comments

Comments
 (0)