change method name to ConnectAndPublish

This commit is contained in:
Salman Zafar 2019-02-26 17:47:19 +05:00
parent 98ff2fe0f9
commit 0e3dc32f5d
2 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,7 @@ use Salman\Mqtt\MqttClass\Mqtt;
public function SendMsgViaMqtt($topic, $message)
{
$mqtt = new Mqtt();
$output = $mqtt->ConnectAndSendMessage($topic, $message);
$output = $mqtt->ConnectAndPublish($topic, $message);
if ($output === true)
{
@ -48,4 +48,4 @@ public function SendMsgViaMqtt($topic, $message)
### Tested on php 7.3 and laravel 5.7
# Full documentation Coming Soon
# Full documentation Coming Soon

View File

@ -30,7 +30,7 @@ class Mqtt
}
public function ConnectAndSendMessage($topic, $msg)
public function ConnectAndPublish($topic, $msg)
{
$client = new phpMQTT($this->host,$this->port, rand(0,100), $this->cert_file, $this->debug);
@ -46,4 +46,5 @@ class Mqtt
}
}