Overrides ConfigurationResolverInterface::getList
public function getList(string $name) : array { $value = $this->getVariable($name); if ($value === null) { return []; } return explode(',', $value); }