Code Duplication    Length = 6-8 lines in 2 locations

src/Plugin/Field/FieldWidget/EntityReferenceBrowserWidget.php 2 locations

@@ 313-320 (lines=8) @@
310
    if ($is_relevant_submit) {
311
      // Submit was triggered by hidden "target_id" element when entities were
312
      // added via entity browser.
313
      if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') {
314
        $parents = $trigger['#parents'];
315
      }
316
      // Submit was triggered by one of the "Remove" buttons. We need to walk
317
      // few levels up to read value of "target_id" element.
318
      elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], $this->fieldDefinition->getName() . '_remove_') === 0) {
319
        $parents = array_merge(array_slice($trigger['#parents'], 0, -static::$deleteDepth), ['target_id']);
320
      }
321
322
      if (isset($parents) && $value = $form_state->getValue($parents)) {
323
        $entities = EntityBrowserElement::processEntityIds($value);
@@ 438-443 (lines=6) @@
435
    // entities are added or by one of the "Remove" buttons. Depending on that
436
    // we need to figure out where root of the widget is in the form structure
437
    // and use this information to return correct part of the form.
438
    if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') {
439
      $parents = array_slice($trigger['#array_parents'], 0, -1);
440
    }
441
    elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], '_remove_')) {
442
      $parents = array_slice($trigger['#array_parents'], 0, -static::$deleteDepth);
443
    }
444
445
    return NestedArray::getValue($form, $parents);
446
  }