vscode-intelephense icon indicating copy to clipboard operation
vscode-intelephense copied to clipboard

PHP intellisense for Visual Studio Code

Results 446 vscode-intelephense issues
Sort by recently updated
recently updated
newest added

**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...

completion

**Describe the bug** Intelephense requires an optional argument. **To Reproduce** ```

stubs

**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...

completion

**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...

rename

Intelephense doesn't work / report missing functions in Traits **To Reproduce** ```php

diagnostics

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...

bug
completion

**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...

completion

**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...

completion

**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

diagnostics

**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...

rename