From ed29372acabb948e7fae2dcdd5b142b3bf82691d Mon Sep 17 00:00:00 2001 From: Paul Rock Date: Wed, 25 Sep 2019 09:47:34 +0300 Subject: [PATCH] typo fixed --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c0e36ad..2fa0ea3 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ $query = ->where('mac-address', '00:00:00:00:40:29'); // Send query and read response from RouterOS -$user = $client->query($query)->read(); +$response = $client->query($query)->read(); var_dump($response); @@ -50,7 +50,7 @@ $query = ->equal('comment', 'testcomment'); // Send query and read response from RouterOS (ordinary answer to update/create/delete queries has empty body) -$user = $client->query($query)->read(); +$response = $client->query($query)->read(); ``` Examples with "where" conditions, "operations" and "tag":