Lines Matching refs:configuration
12 * Elastica client configuration.
26 protected $configuration = [
45 * Create configuration.
62 * Create configuration from Dsn string. Example of valid DSN strings:
111 * @throws InvalidException if the given key is not found in the configuration
118 return $this->configuration;
125 return $this->configuration[$key];
129 * Returns boolean indicates if configuration has key.
133 return \array_key_exists($key, $this->configuration);
137 * Return all configuration.
141 return $this->configuration;
150 $this->configuration[$key] = $value;
161 if (!\array_key_exists($key, $this->configuration)) {
162 $this->configuration[$key] = [$value];
164 if (\is_array($this->configuration[$key])) {
165 $this->configuration[$key][] = $value;
167 $this->configuration[$key] = [$this->configuration[$key], $value];