We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b0d73 commit c77792bCopy full SHA for c77792b
app/code/Magento/Customer/Controller/Account/EditPost.php
@@ -299,26 +299,6 @@ public function execute()
299
return $resultRedirect;
300
}
301
302
- /**
303
- * Convert comma-separated list of attributes to delete into array
304
- *
305
- * @param string $attribute
306
- * @return array
307
- */
308
- private function prepareAttributesToDelete(string $attribute) : array
309
- {
310
- $result = [];
311
- if ($attribute !== "") {
312
- if (str_contains($attribute, ',')) {
313
- $result = explode(',', $attribute);
314
- } else {
315
- $result[] = $attribute;
316
- }
317
- $result = array_unique($result);
318
319
- return $result;
320
321
-
322
/**
323
* Adds a complex success message if email confirmation is required
324
*
0 commit comments