summaryrefslogtreecommitdiff
path: root/src/WorkerClient.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/WorkerClient.php')
-rw-r--r--src/WorkerClient.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/WorkerClient.php b/src/WorkerClient.php
index 240c200..7650df6 100644
--- a/src/WorkerClient.php
+++ b/src/WorkerClient.php
@@ -25,10 +25,14 @@ class WorkerClient extends Client {
* @return ResponseMessage
* @throws \Exception
*/
- public function poll(array $targets): ResponseMessage
+ public function poll(array $targets = []): ResponseMessage
{
+ $data = [];
+ if (!empty($targets))
+ $data['targets'] = $targets;
+
return $this->recv(
- $this->sendRequest(new RequestMessage('poll', ['targets' => $targets]))
+ $this->sendRequest(new RequestMessage('poll', $data))
);
}