public function Sequence::onChange

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

Overrides ListInterface::onChange

File

drupal/core/lib/Drupal/Core/Config/Schema/Sequence.php, line 46
Contains \Drupal\Core\Config\Schema\Sequence.

Class

Sequence
Defines a configuration element of type Sequence.

Namespace

Drupal\Core\Config\Schema

Code

public function onChange($delta) {

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