From a8fcfbbb1ec093035df20128178c107fd74cb445 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 1 May 2012 19:06:28 -0300 Subject: [PATCH] Updating break from `v0.19.3.0` --- Client.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client.php b/Client.php index c868399..fe700ad 100644 --- a/Client.php +++ b/Client.php @@ -17,10 +17,10 @@ class Client extends Elastica_Client $this->logger = $logger; } - public function request($path, $method, $data = array()) + public function request($path, $method, $data = array(), array $query = array()) { $start = microtime(true); - $response = parent::request($path, $method, $data); + $response = parent::request($path, $method, $data, $query); if (null !== $this->logger) { $time = microtime(true) - $start;