Browse Source

typo fixed

pull/18/head
Paul Rock 6 years ago
parent
commit
ed29372aca
  1. 4
      README.md

4
README.md

@ -38,7 +38,7 @@ $query =
->where('mac-address', '00:00:00:00:40:29'); ->where('mac-address', '00:00:00:00:40:29');
// Send query and read response from RouterOS // Send query and read response from RouterOS
$user = $client->query($query)->read();
$response = $client->query($query)->read();
var_dump($response); var_dump($response);
@ -50,7 +50,7 @@ $query =
->equal('comment', 'testcomment'); ->equal('comment', 'testcomment');
// Send query and read response from RouterOS (ordinary answer to update/create/delete queries has empty body) // 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": Examples with "where" conditions, "operations" and "tag":

Loading…
Cancel
Save