intelephense 1.11.8 → 1.12.0
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 +16 -0
- package/lib/intelephense.js +1 -1
- package/lib/stub/dom/dom_c.php +2 -1
- package/lib/stub/meta/.phpstorm.meta.php +36 -36
- package/lib/stub/standard/standard_1.php +3 -2
- package/lib/stub/standard/standard_8.php +26 -17
- package/lib/stub/standard/standard_9.php +82 -56
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.12.0 - 2024-08-08]
|
|
4
|
+
|
|
5
|
+
#### Added
|
|
6
|
+
- Code lens for references, abstract/interface implementations, trait usages, method overrides, method parent. Code lenses are disabled by default and can be enabled by setting the `intelephense.codeLens.references.enable`, `intelephense.codeLens.implementations.enable`, `intelephense.codeLens.usages.enable`, `intelephense.codeLens.overrides.enable`, `intelephense.codeLens.parent.enable` settings to `true` respectively.
|
|
7
|
+
- Find all references for `__construct`.
|
|
8
|
+
- Object shape property hover.
|
|
9
|
+
|
|
10
|
+
#### Changed
|
|
11
|
+
- Built in array function stubs now have templated definitions.
|
|
12
|
+
- Improved DOMNodeList::getIterator stub
|
|
13
|
+
|
|
14
|
+
#### Fixed
|
|
15
|
+
- Comparing class-string in conditional return yielding incorrect type when subject is subtype of test type.
|
|
16
|
+
- No type inference and false undefined property when accessing property of intersection type with object shape component.
|
|
17
|
+
- `@internal` annotation missing description in hover.
|
|
18
|
+
|
|
3
19
|
## [1.11.8 - 2024-08-01]
|
|
4
20
|
|
|
5
21
|
#### Fixed
|