public function ReversibleConfigDiffer::same in Update helper 2.x
Same name and namespace in other branches
- 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_helperCode
public function same($source, $target) {
$source = $this
->stripIgnore($source);
$target = $this
->stripIgnore($target);
return parent::same($source, $target);
}