We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edb7a41 commit 76f8c57Copy full SHA for 76f8c57
src/extension.ts
@@ -28,7 +28,10 @@ export function activate(context: vscode.ExtensionContext) {
28
// debugConfiguration.stopOnEntry = true
29
}
30
31
- if (debugConfiguration.program && !debugConfiguration.runtimeExecutable) {
+ if (
32
+ (debugConfiguration.program || debugConfiguration.runtimeArgs) &&
33
+ !debugConfiguration.runtimeExecutable
34
+ ) {
35
// See if we have runtimeExecutable configured
36
const conf = vscode.workspace.getConfiguration('php')
37
const executablePath =
0 commit comments