config = $config; } /** * Gets configuration object. * * @return \Drupal\Core\Config\StorableConfigBase * The configuration object that caused the event to fire. */ public function getConfig() { return $this->config; } /** * Checks to see if the provided configuration key's value has changed. * * @param string $key * The configuration key to check if it has changed. * * @return bool */ public function isChanged($key) { return $this->config->get($key) !== $this->config->getOriginal($key); } }