public function Storage::checkForChanges in Configuration Management 7.2
File
- lib/
Drupal/ configuration/ Storage/ Storage.php, line 195 - Definition of Drupal\configuration\Storage\Storage.
Class
Namespace
Drupal\configuration\StorageCode
public function checkForChanges($object) {
$new = $this
->export($object);
$original = $this
->export($this
->load()->data);
return $new != $original;
}