Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-08-30 16:37:56 +0300
committerJoas Schilling <coding@schilljs.com>2018-08-30 16:37:56 +0300
commit4bd3700d7aa7cada490d8e661db4bc854d9b7f74 (patch)
treecf4d9e83e7480967ad30e620bcdcb9ac1ba8640a /lib/Participant.php
parent1edb5226bb103ba8143a5a5a0cda00f49ccc5d56 (diff)
InCall is now a flag
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Participant.php')
-rw-r--r--lib/Participant.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Participant.php b/lib/Participant.php
index a07835be7..63ec2eed7 100644
--- a/lib/Participant.php
+++ b/lib/Participant.php
@@ -50,7 +50,7 @@ class Participant {
protected $lastPing;
/** @var string */
protected $sessionId;
- /** @var bool */
+ /** @var int */
protected $inCall;
/** @var bool */
private $isFavorite;
@@ -64,7 +64,7 @@ class Participant {
* @param int $participantType
* @param int $lastPing
* @param string $sessionId
- * @param bool $inCall
+ * @param int $inCall
* @param bool $isFavorite
* @param \DateTime|null $lastMention
*/