Skip to content

Commit 087a7b5

Browse files
committed
chore: format
1 parent 4b7f81d commit 087a7b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public function __construct(?string $apiKey = null, array $options = [])
3636
$this->gammaBaseUrl = is_string($options['gamma_base_url'] ?? null) ? $options['gamma_base_url'] : 'https://gamma-api.polymarket.com';
3737
$this->clobBaseUrl = is_string($options['clob_base_url'] ?? null) ? $options['clob_base_url'] : 'https://clob.polymarket.com';
3838
$this->bridgeBaseUrl = is_string($options['bridge_base_url'] ?? null) ? $options['bridge_base_url'] : 'https://bridge-api.polymarket.com';
39-
$this->dataBaseUrl = is_string($options['data_base_url'] ?? null) ? $options['data_base_url'] : 'https://data-api.polymarket.com';
40-
$this->timeout = is_int($options['timeout'] ?? null) ? $options['timeout'] : 30;
39+
$this->dataBaseUrl = is_string($options['data_base_url'] ?? null) ? $options['data_base_url'] : 'https://data-api.polymarket.com';
40+
$this->timeout = is_int($options['timeout'] ?? null) ? $options['timeout'] : 30;
4141
$this->retries = is_int($options['retries'] ?? null) ? $options['retries'] : 3;
4242
$this->verifySSL = is_bool($options['verify_ssl'] ?? null) ? $options['verify_ssl'] : true;
4343
$privateKeyValue = $options['private_key'] ?? ($_ENV['POLYMARKET_PRIVATE_KEY'] ?? null);

0 commit comments

Comments
 (0)