You are here

public function ConfigurationItem::setProviderExcluded in Features 8.4

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

Parameters

bool $providerExcluded:

Return value

ConfigurationItem

File

src/ConfigurationItem.php, line 314

Class

ConfigurationItem
Contains some configuration together with metadata like the name + package.

Namespace

Drupal\features

Code

public function setProviderExcluded($providerExcluded) {
  $this->providerExcluded = $providerExcluded;
  return $this;
}