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.
| 1110 | Instantiating non-existent Adobe Commerce class/interface | Update code to use a class marked as `@api`. Instantiating non-existent Adobe Commerce class/interface |
22
+
| 1110 | Instantiating non-existent Adobe Commerce class/interface | Update code to use a class marked as `@api`. Instantiating non-existent Adobe Commerce class/interface.|
23
23
| 1111 | Extending from non-existent Adobe Commerce class | The extended class is no longer present in the codebase. Inheritance is not recommended way of extending Adobe Commerce functionality. Update code to use a class marked as `@api`. |
24
24
| 1112 | Importing non-existent Adobe Commerce class | Update code to use a class marked as `@api`. |
25
25
| 1113 | Loading non-existent Adobe Commerce class | Update code to use a class marked as `@api`. |
@@ -172,6 +172,11 @@ Custom code errors are raised when custom code is using the Adobe Commerce entry
172
172
| 5084 | Do not initialize JS component in php | Initialize JS component in a template. |
173
173
| 5085 | The use of certain functions is discouraged | Use the alternative function advised on the message instead. |
174
174
| 5087 | PHP cross-version compatibility issue | Follow the suggestions from the message and check the [migration guide](https://www.php.net/manual/en/migration81.php). |
175
+
| 5088 | Optional parameters found after required ones | Move required parameters after optional ones. |
176
+
| 5089 | Method visibility `final private` found | Change method visibility from `final private` to only `private`. |
177
+
| 5090 | Magic method `__set_state` is not defined as `static`| Magic method `__set_state` must be defined as `static`. |
178
+
| 5091 | Class with `__toString()` method not inheriting from `Stringable` interface | Add `Stringable` interface to class with `__toString()` method. |
179
+
| 5092 |`is_resource()` method used for functions that now return Object | Change `is_resource()` to `instanceof` Object. |
175
180
| 6001 |`jQuery.andSelf()` removed | Use `jQuery.addBack()`. |
176
181
| 6002 | jQuery `$.bind` and `$.unbind` are deprecated | Use `$.on` and `$.off` instead. |
177
182
| 6003 | jQuery method to subscribe to event is deprecated and shouldn't be used | Use `.on("event name", fn)` method instead to subscribe to that event. |
0 commit comments