public function EnvironmentIndicator::setName in Environment Indicator 8.3
Same name and namespace in other branches
- 4.x src/Entity/EnvironmentIndicator.php \Drupal\environment_indicator\Entity\EnvironmentIndicator::setName()
Sets the name.
Parameters
string $name: The environment name.
File
- src/
Entity/ EnvironmentIndicator.php, line 136
Class
- EnvironmentIndicator
- Defines a Environment configuration entity.
Namespace
Drupal\environment_indicator\EntityCode
public function setName($name) {
$this
->set('name', $name);
}