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 f635ba8 commit b82e95cCopy full SHA for b82e95c
src/extension.ts
@@ -94,9 +94,9 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
94
},
95
synchronize: {
96
// Synchronize the setting section 'php' to the server
97
- configurationSection: 'php'
98
- // Notify the server about file changes to composer.json files contain in the workspace
99
- // fileEvents: vscode.workspace.createFileSystemWatcher('**/composer.json')
+ configurationSection: 'php',
+ // Notify the server about changes to PHP files in the workspace
+ fileEvents: vscode.workspace.createFileSystemWatcher('**/*.php')
100
}
101
};
102
0 commit comments