We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855cbe6 commit e1bb265Copy full SHA for e1bb265
src/AsyncClient.php
@@ -41,11 +41,24 @@ final class AsyncClient implements AsyncClientInterface
41
*/
42
protected $client;
43
44
+ /**
45
+ * @var array
46
+ */
47
+ protected $options;
48
+
49
/**
50
* @var AsyncStreamingClient
51
52
protected $streamingClient;
53
54
55
+ * AsyncClient constructor.
56
+ * @param string $consumerKey
57
+ * @param string $consumerSecret
58
+ * @param LoopInterface $loop
59
+ * @param array $options
60
+ * @param Client|null $client
61
62
public function __construct(
63
string $consumerKey,
64
string $consumerSecret,
0 commit comments