Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 58b30f1

Browse files
authored
Merge pull request #2678 from magento-commerce/12-3_integration
12 3 integration
2 parents 6621f85 + 07f5689 commit 58b30f1

File tree

6 files changed

+9
-17
lines changed

6 files changed

+9
-17
lines changed
Loading
Loading
Loading
Loading

src/guides/v2.3/ext-best-practices/phpstorm/built-in-upgrade-compatibility-tool.md

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,11 @@ functional_areas:
66
---
77

88
The built-in Upgrade Compatibility Tool aims to achieve the same issues coverage as original Adobe Commerce [Upgrade Compatibility Tool]({{site.baseurl}}/upgrade-compatibility-tool/introduction.html).
9-
There are issues that covered by this MVP version:
10-
11-
| Code | Name |
12-
| ----- | ------ |
13-
| 1131 | extending from @deprecated class |
14-
| 1132 | importing @deprecated class |
15-
| 1332 | importing @deprecated interface |
16-
| 1134 | using @deprecated class |
17-
| 1334 | using @deprecated interface |
18-
| 1234 | using @deprecated constant |
19-
| 1534 | using @deprecated property |
20-
| 1235 | overriding @deprecated constant |
21-
| 1535 | overriding @deprecated property |
22-
| 1337 | inherited from @deprecated interface |
23-
| 1338 | implemented @deprecated interface |
24-
| 1439 | call @deprecated method |
9+
There are three types of inspections covered by this MVP version:
10+
11+
* Deprecation (severity level: WARNING)
12+
* API coverage (severity level: ERROR)
13+
* Existence (severity level: CRITICAL)
2514

2615
A complete list of inspections that are already available in the original tool, can be found by the [following link]({{site.baseurl}}/upgrade-compatibility-tool/errors.html).
2716

@@ -41,6 +30,9 @@ It allows you to see the problematic code just in real time, without running it
4130
**The result of the real time inspection is most suitable for use during development, to be always compatible with future versions**:
4231

4332
![]({{site.baseurl}}/common/images/phpstorm/built-in-uct/uct-inspections-highlighting.png)
33+
![]({{site.baseurl}}/common/images/phpstorm/built-in-uct/uct-inspections-highlighting-2.png)
34+
![]({{site.baseurl}}/common/images/phpstorm/built-in-uct/uct-inspections-highlighting-3.png)
35+
![]({{site.baseurl}}/common/images/phpstorm/built-in-uct/uct-inspections-highlighting-4.png)
4436

4537
The second IntelliJ IDEA tool that we can use for running UCT inspections is called **Inspect Code**. It is available under menu item
4638
`Code -> Inspect Code`. Also, you can open a context menu under the target directory that allows IntelliJ IDEA to populate the path to analyse for you automatically:

src/guides/v2.3/frontend-dev-guide/layouts/layout-override.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ functional_areas:
77

88
## What's in this topic {#fedg_layout_override_overview}
99

10-
Not all layout customizations can be performed by [extending layouts]. If the amount of customizations is large, you can use the overriding function for the needed layout file. This means that the new file that you place in the theme will be used instead of the parent [theme] layout file of [base] layout file.
10+
Not all layout customizations can be performed by [extending layouts]. If the amount of customizations is large, you can use the overriding function for the needed layout file. This means that the new file that you place in the theme will be used instead of the parent [theme] layout file or [base] layout file.
1111

1212
In this article, [page layouts], [page configurations], and [generic layouts] are referred to as *layout files*, as the mechanism of overriding is similar for all of them.
1313

0 commit comments

Comments
 (0)