diff --git a/examples/hotspot_user.php b/examples/hotspot_user.php new file mode 100644 index 0000000..6ad450c --- /dev/null +++ b/examples/hotspot_user.php @@ -0,0 +1,24 @@ +set('host', '127.0.0.1') + ->set('port', 8728) + ->set('pass', 'admin') + ->set('user', 'admin'); + +// Initiate client with config object +$client = new Client($config); + +// Build query for details about user profile +$query = new Query('/ip/hotspot/user/profile/print'); + +// Add user +$out = $client->query($query)->read(); +dd($out);