Update the package for v1 of the MQTT client (#1)
* Update composer packages and untrack composer.lock * Update code and config for v1.0.0-rc1 * Use contract instead of implementation * Update README.md
This commit is contained in:
@ -6,12 +6,12 @@ namespace PhpMqtt\Client\Facades;
|
||||
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
use PhpMqtt\Client\ConnectionManager;
|
||||
use PhpMqtt\Client\MQTTClient;
|
||||
use PhpMqtt\Client\Contracts\MqttClient;
|
||||
|
||||
/**
|
||||
* @method static MQTTClient connection(string $name = null)
|
||||
* @method static void close(string $connection = null)
|
||||
* @method static void publish(string $topic, string $message, string $connection = null)
|
||||
* @method static MqttClient connection(string $name = null)
|
||||
* @method static void disconnect(string $connection = null)
|
||||
* @method static void publish(string $topic, string $message, bool $retain = false, string $connection = null)
|
||||
*
|
||||
* @see ConnectionManager
|
||||
* @package PhpMqtt\Client\Facades
|
||||
|
Reference in New Issue
Block a user