intelephense 1.18.1 → 1.18.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 +9 -1
- package/lib/intelephense.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.18.2 - 2026-05-02]
|
|
4
|
+
|
|
5
|
+
#### Fixed
|
|
6
|
+
- False array key type error when array is initially empty.
|
|
7
|
+
- False duplicate trait in use list when multiple traits in same file use same trait.
|
|
8
|
+
- False trait method collision when trait method is identical but inherited by different pathways.
|
|
9
|
+
- False unused property error when trait declares property and composing class declares the property as a promoted property.
|
|
10
|
+
- Make `instanceof` work with `class-string<T>`.
|
|
11
|
+
|
|
3
12
|
## [1.18.1 - 2026-05-01]
|
|
4
13
|
|
|
5
14
|
#### Changed
|
|
@@ -10,7 +19,6 @@
|
|
|
10
19
|
- `P1119 Too many argument` errors will no longer show for functions that call `func_get_args`.
|
|
11
20
|
|
|
12
21
|
#### Fixed
|
|
13
|
-
|
|
14
22
|
- Document symbols broken when using a namespace definition with a body.
|
|
15
23
|
- `#[Override]` inserted in wrong spot for method override completion if method modifiers and or `function` keyword already present.
|
|
16
24
|
- False key type errors when using array access notation on `ArrayAccess` implementations.
|