public function ReversibleConfigDiffer::diff in Update helper 2.x
Same name and namespace in other branches
- 8 src/ReversibleConfigDiffer.php \Drupal\update_helper\ReversibleConfigDiffer::diff()
File
- src/
ReversibleConfigDiffer.php, line 104
Class
- ReversibleConfigDiffer
- Overwrite of config updater differ.
Namespace
Drupal\update_helperCode
public function diff($source, $target) {
$source = $this
->stripIgnore($source);
$target = $this
->stripIgnore($target);
return parent::diff($source, $target);
}