intelephense 1.17.4-beta → 1.17.5-beta

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,24 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.17.5 - 2026-04-08]
4
+
5
+ #### Added
6
+ - `throwDepth` setting to control maximum call depth when analysing `throw` expressions. Defaults to `0` (current call declaration body only). Max `10`. Higher values may impact performance.
7
+
8
+ #### Changed
9
+ - Methods declared with `@method` with no return type are given return type of `void` instead of `mixed`.
10
+ - `@param` type is now optional.
11
+ - Tweaked suggestion order.
12
+
13
+ #### Fixed
14
+ - False no type information available diagnostic when property/parameter inherits documented type.
15
+ - False method compatibility error when a trait method and interface method return `self`.
16
+ - `bool` subject type not expanded to `true|false` when comparing to `true` in conditional type.
17
+ - No import quickfix for undefined PHPDoc types.
18
+ - Incorrect method description shown in hover when multiple methods of same name are declared using `@method`.
19
+ - Array access type inferred as `mixed` when subject is a template type with array shape constraint.
20
+ - False undefined phpdoc type in constant unions.
21
+
3
22
  ## [1.17.4 - 2026-03-23]
4
23
 
5
24
  #### Added