protected function StorageComparer::getSourceNames

Gets all the configuration names in the source storage.

Return value

array List of all the configuration names in the source storage.

3 calls to StorageComparer::getSourceNames()

File

drupal/core/lib/Drupal/Core/Config/StorageComparer.php, line 178
Contains \Drupal\Core\Config\StorageComparer.

Class

StorageComparer
Defines a config storage comparer.

Namespace

Drupal\Core\Config

Code

protected function getSourceNames() {
  if (empty($this->sourceNames)) {
    $this->sourceNames = $this->sourceStorage
      ->listAll();
  }
  return $this->sourceNames;
}