Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ConfigurationResolver.php

function ConfigurationResolver::getList

Overrides ConfigurationResolverInterface::getList

File

vendor/open-telemetry/api/Instrumentation/ConfigurationResolver.php, line 43

Class

ConfigurationResolver

Namespace

OpenTelemetry\API\Instrumentation

Code

public function getList(string $name) : array {
    $value = $this->getVariable($name);
    if ($value === null) {
        return [];
    }
    return explode(',', $value);
}
RSS feed
Powered by Drupal