Overrides ResolverInterface::retrieveValue
public function retrieveValue(string $variableName) { $value = $this->accessor ->get($variableName) ?: ''; if (is_array($value)) { return implode(',', $value); } return $value; }