You are here

public function ReversibleConfigDiffer::same in Update helper 2.x

Same name and namespace in other branches
  1. 8 src/ReversibleConfigDiffer.php \Drupal\update_helper\ReversibleConfigDiffer::same()

File

src/ReversibleConfigDiffer.php, line 94

Class

ReversibleConfigDiffer
Overwrite of config updater differ.

Namespace

Drupal\update_helper

Code

public function same($source, $target) {
  $source = $this
    ->stripIgnore($source);
  $target = $this
    ->stripIgnore($target);
  return parent::same($source, $target);
}