providers = $providers; $this->options = $options; } public function jsonSerialize() { return [ 'providers' => $this->getProviders(), 'options' => $this->getOptions(), ]; } public function getProviders(): array { return $this->providers; } public function getOptions(): array { return $this->options; } }