You are here

public function Package::appendConfig in Features 8.4

Same name and namespace in other branches
  1. 8.3 src/Package.php \Drupal\features\Package::appendConfig()

Append a new filename.

Parameters

string $config:

Return value

$this

File

src/Package.php, line 251

Class

Package
Defines a value object for storing package related data.

Namespace

Drupal\features

Code

public function appendConfig($config) {
  $this->config[] = $config;
  $this->config = array_unique($this->config);
  return $this;
}