intelephense 1.16.0 → 1.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.16.2 - 2025-11-27]
4
+
5
+ #### Fixed
6
+ - Type aliases not expanded in foreach when used as type arguments for iterators.
7
+ - Global scoped definitions showing as undefined.
8
+ - Shorthand nullable parse error in `@method` tags.
9
+ - Undefined variable when defined in previous call of call chain.
10
+ - Undefined variable when defined in `if` expression.
11
+ - Templated closure parameter showing as mixed even if a type has been declared when type arguments not supplied for scope.
12
+ - Type narrowing `$this` in traits not working.
13
+ - When both an annotated member and a declared member share the same name, visibility should be checked to select the most appropriate definition for context.
14
+ - Type constants not expanded if in type argument of another type.
15
+
16
+ ## [1.16.1 - 2025-11-22]
17
+
18
+ #### Fixed
19
+ - Stack overflow when determining return type of dynamic call.
20
+ - PHPDoc with `$this` as a type not recognised.
21
+ - False cannot access member from scope diagnostics when `__call` and `__get` could be used to access non public members.
22
+ - Only the first class constant shown as completion suggestion when using comma separated declarations and PHPDoc.
23
+ - Variables declared in an array element showing as undefined in subsequent elements.
24
+ - Promoted property with setter hook showing `$value` parameter as undefined.
25
+
3
26
  ## [1.16.0 - 2025-11-20]
4
27
 
5
28
  #### Added