name = $name; } /** * {@inheritDoc} * * @param mixed[string] $values * The array of values. * @param mixed $value * The value to inject. * * @return mixed[string] * The resulting array of values. * * @since 2.4.0 */ public function inject(array $values, $value) { return $values + [ $this->name => $value, ]; } }