You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/_includes/upgrade/uct-error-reference.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ GraphQL Schema critical issues are raised if the schema items are not present in
46
46
| 3101 | Type was removed | List all queries that are referencing this field. Check if these queries are used by the customization implementation. Update the client code to handle the changed query interface. |
47
47
| 3102 | Type removed from union | If the union type is used in the GraphQL request constructing or response processing implementation it may need to be updated. |
48
48
| 3103 | Field removed | Check if the field is referenced in the customization codebase. Adjust the implementation to correctly handle the new field type. |
49
-
| 3105 | Implemented interface removed | Check if the type implementing the removed interface is used in the cusomization. The implementation may need to be updated if it is relying on the removed interface. |
49
+
| 3105 | Implemented interface removed | Check if the type implementing the removed interface is used in the customization. The implementation may need to be updated if it is relying on the removed interface. |
50
50
| 3106 | Value removed from enum | If the removed enum value is used in the GraphQL request constructing or response processing implementation it may need to be updated. |
51
51
| 3107 | Argument removed | Check if the field is used in the customization codebase. Remove the argument for this field. |
52
52
| 3109 | Directive removed | Check if the directive is used in the customization codebase. Adjust the implementation to remove the reference to the directive. |
@@ -168,8 +168,8 @@ Custom code errors are raised when custom code is using the Adobe Commerce entry
168
168
| 5073 | Legacy table names with slash must be fixed to direct table names | Use direct table name instead |
169
169
| 5074 | Use of deprecated method `getResource()` to (save / load / delete) data detected. | Use a repository instead |
170
170
| 5075 | Application modules should not use classes from test modules | Remove usage of classes from test modules |
171
-
| 5076 | Cannot use in namespace as it is reserved since PHP 7 |Remove usage from namespace |
172
-
| 5077 | Cannot use as class name as it is reserved since PHP 7 |Remove usage from class name |
171
+
| 5076 | Cannot use in namespace as it is reserved since PHP 7 |Replace reserved word in namespace by another one not used by PHP as keyword|
172
+
| 5077 | Cannot use as class name as it is reserved since PHP 7 |Replace reserved word in class name by another one not used by PHP as keyword|
173
173
| 5078 | Class needs to be requested in constructor, otherwise compiler will not be able to find and generate these classes | Add class to constructor |
174
174
| 5079 | Use of var class variables is discouraged | Avoid using 'var' to declare class variable |
175
175
| 5080 | Possible raw SQL statement detected | Use repositories or data patches instead |
@@ -179,8 +179,8 @@ Custom code errors are raised when custom code is using the Adobe Commerce entry
179
179
| 5084 | Please do not initialize JS component in php | Initialize JS component in template |
180
180
| 6001 |`jQuery.andSelf()` removed | Use `jQuery.addBack()`|
181
181
| 6002 | jQuery `$.bind` and `$.unbind` are deprecated | Use `$.on` and `$.off` instead |
| 6003 |jQuery method to subscribe to that event is deprecated and shouldn't be used anymore | Use `.on("event name", fn)` method instead to subscribe to that event|
183
+
| 6003 |jQuery method to trigger that event is deprecated and shouldn't be used anymore | Use `.trigger("event name")` method instead to trigger that event|
184
184
| 6004 | jQuery `$.delegate` and `$.undelegate` are deprecated | Use `$.on` and `$.off` instead |
0 commit comments