initialized); } /** * A mapping of network name to endpoint configuration for that network. * * @var array|null */ protected $endpointsConfig; /** * A mapping of network name to endpoint configuration for that network. * * @return array|null */ public function getEndpointsConfig(): ?iterable { return $this->endpointsConfig; } /** * A mapping of network name to endpoint configuration for that network. * * @param array|null $endpointsConfig */ public function setEndpointsConfig(?iterable $endpointsConfig): self { $this->initialized['endpointsConfig'] = true; $this->endpointsConfig = $endpointsConfig; return $this; } }