intelephense 1.10.2 → 1.10.3

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.10.3 - 2024-03-25]
4
+
5
+ #### Fixed
6
+ - Incorrect return type when using null safe operator.
7
+ - False undefined variable error in 3rd `for` control expression.
8
+ - Incorrect return type for traits with method templates.
9
+ - False return type error when method returns method or class template type.
10
+ - Subclass constructor should not inherit phpdoc from superclass constructor.
11
+ - Conditional return types when testing parameter in namespaced file.
12
+ - False unknown named argument diagnostic with closures.
13
+ - Formatter adding extra space in method call where method named `catch`.
14
+ - Nested heredoc parsing.
15
+ - False unknown named argument diagnostic with trait method aliases.
16
+ - Metadata overrides when named args are used.
17
+ - Various version dependent stub type problems.
18
+ - Array callback references not being found.
19
+ - Type inference for const symbols with `new` object initialisers.
20
+ - Type inference in switch/match with instanceof.
21
+ - Trait template mapping when phpdoc provided above trait use declaration.
22
+ - Object creation expression with variable returning `object` when more specific type could be inferred.
23
+ - False method compatibility diagnostic with base class that has a trait method alias.
24
+ - False method not implemented diagnostics when enum implements interface that extends BackedEnum.
25
+
3
26
  ## [1.10.2 - 2023-12-10]
4
27
 
5
28
  #### Fixed