vscode-intelephense
vscode-intelephense copied to clipboard
PHP intellisense for Visual Studio Code
**Feature description or problem with existing feature** When a method have a large number of named arguments, I would like the possibility to auto create a template with all the...
**Describe the bug** Intelephense requires an optional argument. **To Reproduce** ```
**Describe the bug** When writing `@param`, intelephense does not autocomplete the variable name **To Reproduce** ```php /** @param int[] $pa */ function test(array $param): void { } ``` Intelephense does...
**Describe the bug** When using namespace rename (all mode), any non FQ names are not replaced, nor are any PHPDoc references to the classes. **Expected behavior** I'd expect FQ PHPDoc...
Intelephense doesn't work / report missing functions in Traits **To Reproduce** ```php
I'm currently working on a QueryBuilder and I'm stuck on this error in the code editor. This does not block the execution of the code but it is marked in...
**Describe the bug** When calling a static method from a class string argument, the method is unknown **To Reproduce** ```php class Hello { public static function world(): self { return...
**Describe the bug** Autocomplete of named argument does not find arguments if the case is incorrect **To Reproduce** ```php function helloWorld(int $myArgument): void { } helloWorld(myargu) ``` **Expected behavior** it...
**Describe the bug** When a class extends other class extending a exception the plugin not detect invalid arguments in construct **To Reproduce** teste.php ```php
**Describe the bug** Intelephense rename works just as expected if I rename `$a` to `$b`. As soon as I try to add an array index, it fails, eg: `$a` to...