public function Mapping::onChange

Implements \Drupal\Core\TypedData\ComplexDataInterface::onChange().

Overrides ComplexDataInterface::onChange

File

drupal/core/lib/Drupal/Core/Config/Schema/Mapping.php, line 133
Contains \Drupal\Core\Config\Schema\Mapping.

Class

Mapping
Defines a mapping configuration element.

Namespace

Drupal\Core\Config\Schema

Code

public function onChange($property_name) {

  // Notify the parent of changes.
  if (isset($this->parent)) {
    $this->parent
      ->onChange($this->name);
  }
}