You are here

public function ConfigurationItem::setLabel in Features 8.3

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

Parameters

mixed $label:

Return value

ConfigurationItem

File

src/ConfigurationItem.php, line 195

Class

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

Namespace

Drupal\features

Code

public function setLabel($label) {
  $this->label = $label;
  return $this;
}