You are here

public function Interpolator::setData in Drupal 8

Same name and namespace in other branches
  1. 9 composer/Plugin/Scaffold/Interpolator.php \Drupal\Composer\Plugin\Scaffold\Interpolator::setData()
  2. 10 composer/Plugin/Scaffold/Interpolator.php \Drupal\Composer\Plugin\Scaffold\Interpolator::setData()

Sets 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 54

Class

Interpolator
Injects config values from an associative array into a string.

Namespace

Drupal\Composer\Plugin\Scaffold

Code

public function setData(array $data) {
  $this->data = $data;
  return $this;
}