Code Duplication    Length = 6-8 lines in 2 locations

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

@@ 393-398 (lines=6) @@
390
    // entities are added or by one of the "Remove" buttons. Depending on that
391
    // we need to figure out where root of the widget is in the form structure
392
    // and use this information to return correct part of the form.
393
    if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') {
394
      $parents = array_slice($trigger['#array_parents'], 0, -1);
395
    }
396
    elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], '_remove_')) {
397
      $parents = array_slice($trigger['#array_parents'], 0, -static::$deleteDepth);
398
    }
399
400
    return NestedArray::getValue($form, $parents);
401
  }
@@ 629-636 (lines=8) @@
626
    if ($is_relevant_submit) {
627
      // Submit was triggered by hidden "target_id" element when entities were
628
      // added via entity browser.
629
      if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') {
630
        $parents = $trigger['#parents'];
631
      }
632
      // Submit was triggered by one of the "Remove" buttons. We need to walk
633
      // few levels up to read value of "target_id" element.
634
      elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], $this->fieldDefinition->getName() . '_remove_') === 0) {
635
        $parents = array_merge(array_slice($trigger['#parents'], 0, -static::$deleteDepth), ['target_id']);
636
      }
637
638
      if (isset($parents) && $value = $form_state->getValue($parents)) {
639
        $entities = EntityBrowserElement::processEntityIds($value);