Skip to content

Commit

Permalink
Правки
Browse files Browse the repository at this point in the history
  • Loading branch information
usr3024 committed May 13, 2019
1 parent 7373d52 commit 976c1fc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/StompClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
/**
* @author Sergey Ivanov(ivanov@tochka.com)
*
* @property Stomp stomp
* @property string login
* @property array hosts
* @property array queues
* @property string pw
* @property string vhost
* @property Stomp|null stomp
* @property string login
* @property array hosts
* @property array queues
* @property string pw
* @property string|null vhost
*/
class StompClient
{
Expand All @@ -31,13 +31,13 @@ class StompClient
*/
private $stomp;

/** @var array|null $hosts */
/** @var array $hosts */
private $hosts;

/** @var string|null $login */
/** @var string $login */
private $login;

/** @var string|null $pw */
/** @var string $pw */
private $pw;

/** @var string|null $vhost */
Expand Down

0 comments on commit 976c1fc

Please sign in to comment.