You are here

public function Package::removeConfig in Features 8.3

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

File

src/Package.php, line 260

Class

Package
Defines a value object for storing package related data.

Namespace

Drupal\features

Code

public function removeConfig($name) {
  $this->config = array_diff($this->config, [
    $name,
  ]);
  return $this;
}