You are here

public function ConfigPatch::__construct in Configuration Split 2.0.x

Create the object.

Parameters

array $added: The elements added.

array $removed: The elements removed.

File

src/Config/ConfigPatch.php, line 34

Class

ConfigPatch
The config patch value object.

Namespace

Drupal\config_split\Config

Code

public function __construct(array $added, array $removed) {
  $this->added = $added;
  $this->removed = $removed;
}