Fix timeout typo in apiclients (#10615)

This commit is contained in:
Jellyfrog
2019-09-21 00:49:14 +00:00
committed by Tony Murray
parent a0c2df6cd9
commit d8eb3ab90e
+1 -1
View File
@@ -37,7 +37,7 @@ class BaseApi
if (is_null($this->client)) {
$this->client = new Client([
'base_uri' => $this->base_uri,
'tiemout' => 2,
'timeout' => 2,
]);
}