Skip to content

Commit

Permalink
phpstan fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Feb 27, 2020
1 parent beb1d45 commit 12828bf
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/IPub/MQTTClient/Client/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,67 +63,67 @@ final class Client implements IClient
use Nette\SmartObject;

/**
* @var Closure
* @var Closure[]
*/
public $onStart = [];

/**
* @var Closure
* @var Closure[]
*/
public $onOpen = [];

/**
* @var Closure
* @var Closure[]
*/
public $onConnect = [];

/**
* @var Closure
* @var Closure[]
*/
public $onDisconnect = [];

/**
* @var Closure
* @var Closure[]
*/
public $onClose = [];

/**
* @var Closure
* @var Closure[]
*/
public $onPing = [];

/**
* @var Closure
* @var Closure[]
*/
public $onPong = [];

/**
* @var Closure
* @var Closure[]
*/
public $onPublish = [];

/**
* @var Closure
* @var Closure[]
*/
public $onSubscribe = [];

/**
* @var Closure
* @var Closure[]
*/
public $onUnsubscribe = [];

/**
* @var Closure
* @var Closure[]
*/
public $onMessage = [];

/**
* @var Closure
* @var Closure[]
*/
public $onWarning = [];

/**
* @var Closure
* @var Closure[]
*/
public $onError = [];

Expand Down

0 comments on commit 12828bf

Please sign in to comment.