Skip to content

Commit 38c2c3a

Browse files
committed
remove extra semi colon
1 parent 86cac71 commit 38c2c3a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/support/php.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ import {
1717
import { md5 } from "./util";
1818

1919
const toTemplateVar = (str: string) => {
20-
return `__VSCODE_LARAVEL_${str.toUpperCase()}__`;
20+
const suffix = str === "output" ? ";" : "";
21+
22+
return `__VSCODE_LARAVEL_${str.toUpperCase()}__${suffix}`;
2123
};
2224

2325
let defaultPhpCommand: string | null = null;

0 commit comments

Comments
 (0)