clientId = $clientId; $this->clientSecret = $clientSecret; $this->scopes = $scopes; } /** * @return Configuration */ public static function fromArray(array $conf) { return new static($conf['clientId'], $conf['clientSecret'], isset($conf['scopes']) ? $conf['scopes'] : []); } }