You are here

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

Storage

Namespace

Drupal\configuration\Storage

Code

public function checkForChanges($object) {
  $new = $this
    ->export($object);
  $original = $this
    ->export($this
    ->load()->data);
  return $new != $original;
}