File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Customer/Ui/Component/Listing/Column Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 42
42
</event >
43
43
<event name =" magento_catalog_api_data_categorytreeinterface_save_after" >
44
44
<observer name =" legacy_categorytree_save_after" instance =" Magento\Framework\EntityManager\Observer\AfterEntitySave" />
45
- <observer name =" invalidate_cache_on_categorytree_design_change" instance =" Magento\Catalog\Observer\InvalidateCacheOnCategoryDesignChange" />
46
45
</event >
47
46
<event name =" magento_catalog_api_data_categorytreeinterface_delete_before" >
48
47
<observer name =" legacy_categorytree_delete_before" instance =" Magento\Framework\EntityManager\Observer\BeforeEntityDelete" />
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public function __construct(
45
45
}
46
46
47
47
/**
48
- * { @inheritdoc}
48
+ * @inheritdoc
49
49
*/
50
50
public function prepareDataSource (array $ dataSource )
51
51
{
@@ -66,7 +66,7 @@ public function prepareDataSource(array $dataSource)
66
66
private function getFieldLabel (array $ item )
67
67
{
68
68
$ isConfirmationRequired = $ this ->accountConfirmation ->isConfirmationRequired (
69
- $ item ['website_id ' ][0 ],
69
+ $ item ['website_id ' ][0 ] ?? null ,
70
70
$ item [$ item ['id_field_name ' ]],
71
71
$ item ['email ' ]
72
72
);
Original file line number Diff line number Diff line change 21
21
/**
22
22
* User backend observer model for authentication
23
23
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
24
+ * @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
24
25
*/
25
26
class AuthObserver implements ObserverInterface
26
27
{
@@ -184,6 +185,7 @@ private function _updateLockingInformation($user)
184
185
185
186
/**
186
187
* Check whether the latest password is expired
188
+ *
187
189
* Side-effect can be when passwords were changed with different lifetime configuration settings
188
190
*
189
191
* @param array $latestPassword
You can’t perform that action at this time.
0 commit comments