You are here

FeedImportMergeOverwriteFast.php in Feed Import 8

File

feed_import_base/src/FeedImportMergeOverwriteFast.php
View source
<?php

namespace Drupal\feed_import_base;


/**
 * This class just overwrites values without any checks.
 * Does not overwrites values if are missing from source.
 */
class FeedImportMergeOverwriteFast extends FeedImportMergeField {

  /**
   * {@inheritdoc}
   */
  public function merge(array &$current, array &$new, array &$field) {
    $current = $new;
    return TRUE;
  }

}

Classes

Namesort descending Description
FeedImportMergeOverwriteFast This class just overwrites values without any checks. Does not overwrites values if are missing from source.