function Interpolator::addData
Same name in other branches
- 8.9.x composer/Plugin/Scaffold/Interpolator.php \Drupal\Composer\Plugin\Scaffold\Interpolator::addData()
- 10 composer/Plugin/Scaffold/Interpolator.php \Drupal\Composer\Plugin\Scaffold\Interpolator::addData()
- 11.x composer/Plugin/Scaffold/Interpolator.php \Drupal\Composer\Plugin\Scaffold\Interpolator::addData()
Adds to the data set to use when interpolating.
Parameters
array $data: The key:value pairs to use when interpolating.
Return value
$this
File
-
composer/
Plugin/ Scaffold/ Interpolator.php, line 67
Class
- Interpolator
- Injects config values from an associative array into a string.
Namespace
Drupal\Composer\Plugin\ScaffoldCode
public function addData(array $data) {
$this->data = array_merge($this->data, $data);
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.