From 26626edda5c544fc2604d941d44c7aab9ce47415 Mon Sep 17 00:00:00 2001 From: Zinovyev Ivan Date: Tue, 1 Dec 2015 17:55:38 +0300 Subject: [PATCH] Update README.md The sendAll() method is a part of the $client object --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c87541..8fa5fcb 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ $client->send($client->notification('method', ['key'=>'value'])); $client->send($client->request(123, 'method', ['key'=>'value'])); // Send a batch of requests -$request->sendAll([ +$client->sendAll([ $client->request(123, 'method', ['key'=>'value']), $client->request(456, 'method', ['key'=>'value']), $client->notification('method', ['key'=>'value'])