function StorageComparer::getTargetStorage

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/StorageComparer.php \Drupal\Core\Config\StorageComparer::getTargetStorage()
  2. 10 core/lib/Drupal/Core/Config/StorageComparer.php \Drupal\Core\Config\StorageComparer::getTargetStorage()
  3. 11.x core/lib/Drupal/Core/Config/StorageComparer.php \Drupal\Core\Config\StorageComparer::getTargetStorage()

Overrides StorageComparerInterface::getTargetStorage

1 call to StorageComparer::getTargetStorage()
StorageComparer::getAndSortConfigData in core/lib/Drupal/Core/Config/StorageComparer.php
Gets and sorts configuration data from the source and target storages.

File

core/lib/Drupal/Core/Config/StorageComparer.php, line 132

Class

StorageComparer
Defines a config storage comparer.

Namespace

Drupal\Core\Config

Code

public function getTargetStorage($collection = StorageInterface::DEFAULT_COLLECTION) {
    if (!isset($this->targetStorages[$collection])) {
        if ($collection == StorageInterface::DEFAULT_COLLECTION) {
            $this->targetStorages[$collection] = $this->targetStorage;
        }
        else {
            $this->targetStorages[$collection] = $this->targetStorage
                ->createCollection($collection);
        }
    }
    return $this->targetStorages[$collection];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.