Skip to content

Commit 4fa6410

Browse files
committed
Fix signature
1 parent bc7f644 commit 4fa6410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as vscode from 'vscode'
2-
import { WorkspaceFolder, DebugConfiguration, ProviderResult, CancellationToken } from 'vscode'
2+
import { WorkspaceFolder, DebugConfiguration, CancellationToken } from 'vscode'
33
import { LaunchRequestArguments } from './phpDebug'
44
import * as which from 'which'
55
import * as path from 'path'
@@ -11,7 +11,7 @@ export function activate(context: vscode.ExtensionContext) {
1111
folder: WorkspaceFolder | undefined,
1212
debugConfiguration: DebugConfiguration & LaunchRequestArguments,
1313
token?: CancellationToken
14-
): Promise<ProviderResult<DebugConfiguration>> {
14+
): Promise<DebugConfiguration | undefined> {
1515
const isDynamic =
1616
(!debugConfiguration.type || debugConfiguration.type === 'php') &&
1717
!debugConfiguration.request &&

0 commit comments

Comments
 (0)