debugger: Fix invalid schema for pathMappings
(#31595)
See https://github.com/xdebug/vscode-php-debug?tab=readme-ov-file#remote-host-debugging Release Notes: - Debugger Beta: Fixed invalid schema for `pathMappings`
This commit is contained in:
parent
f627ac92ee
commit
00bc154c46
1 changed files with 2 additions and 16 deletions
|
@ -149,22 +149,8 @@ impl DebugAdapter for PhpDebugAdapter {
|
||||||
"default": false
|
"default": false
|
||||||
},
|
},
|
||||||
"pathMappings": {
|
"pathMappings": {
|
||||||
"type": "array",
|
"type": "object",
|
||||||
"description": "A list of server paths mapping to the local source paths on your machine for remote host debugging",
|
"description": "A mapping of server paths to local paths.",
|
||||||
"items": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"serverPath": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Path on the server"
|
|
||||||
},
|
|
||||||
"localPath": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Corresponding path on the local machine"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": ["serverPath", "localPath"]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"log": {
|
"log": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue