Home
last modified time | relevance | path

Searched refs:registeredNamespaces (Results 1 – 3 of 3) sorted by last modified time

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php92 protected $registeredNamespaces = []; variable in Elasticsearch\\Client
270 * @param AbstractNamespace[] $registeredNamespaces
272 public function __construct(Transport $transport, callable $endpoint, array $registeredNamespaces) argument
311 $this->registeredNamespaces = $registeredNamespaces;
1911 if (isset($this->registeredNamespaces[$name])) {
1912 return $this->registeredNamespaces[$name];
H A DClientBuilder.php686 $registeredNamespaces = [];
691 $registeredNamespaces[$builder->getName()] = $builder->getObject($this->transport, $this->serializer);
694 return $this->instantiate($this->transport, $this->endpoint, $registeredNamespaces);
697 protected function instantiate(Transport $transport, callable $endpoint, array $registeredNamespaces): Client argument
699 return new Client($transport, $endpoint, $registeredNamespaces);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc454 .`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)`