Completed
Pull Request — master (#544)
by Alexandru
01:26
created
src/ChannelManagers/LocalChannelManager.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,6 @@
 block discarded – undo
299 299
      * @param  \Ratchet\ConnectionInterface  $connection
300 300
      * @param  stdClass  $user
301 301
      * @param  string  $channel
302
-     * @param  stdClass  $payload
303 302
      * @return PromiseInterface[bool]
304 303
      */
305 304
     public function userLeftPresenceChannel(ConnectionInterface $connection, stdClass $user, string $channel): PromiseInterface
Please login to merge, or discard this patch.
src/ChannelManagers/RedisChannelManager.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -319,7 +319,6 @@  discard block
 block discarded – undo
319 319
      * @param  \Ratchet\ConnectionInterface  $connection
320 320
      * @param  stdClass  $user
321 321
      * @param  string  $channel
322
-     * @param  stdClass  $payload
323 322
      * @return PromiseInterface[bool]
324 323
      */
325 324
     public function userLeftPresenceChannel(ConnectionInterface $connection, stdClass $user, string $channel): PromiseInterface
@@ -549,7 +548,7 @@  discard block
 block discarded – undo
549 548
      *
550 549
      * @param  string|int  $appId
551 550
      * @param  string|null  $channel
552
-     * @param  int  $decrement
551
+     * @param  int  $increment
553 552
      * @return PromiseInterface[int]
554 553
      */
555 554
     public function decrementSubscriptionsCount($appId, string $channel = null, int $increment = 1): PromiseInterface
@@ -561,7 +560,7 @@  discard block
 block discarded – undo
561 560
      * Add the connection to the sorted list.
562 561
      *
563 562
      * @param  \Ratchet\ConnectionInterface  $connection
564
-     * @param  \DateTime|string|null  $moment
563
+     * @param  Carbon  $moment
565 564
      * @return PromiseInterface
566 565
      */
567 566
     public function addConnectionToSet(ConnectionInterface $connection, $moment = null): PromiseInterface
@@ -764,7 +763,7 @@  discard block
 block discarded – undo
764 763
     /**
765 764
      * Get a new RedisLock instance to avoid race conditions.
766 765
      *
767
-     * @return \Illuminate\Cache\CacheLock
766
+     * @return RedisLock
768 767
      */
769 768
     protected function lock()
770 769
     {
Please login to merge, or discard this patch.
src/Contracts/ChannelManager.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,6 @@
 block discarded – undo
157 157
      * @param  \Ratchet\ConnectionInterface  $connection
158 158
      * @param  stdClass  $user
159 159
      * @param  string  $channel
160
-     * @param  stdClass  $payload
161 160
      * @return PromiseInterface[bool]
162 161
      */
163 162
     public function userLeftPresenceChannel(ConnectionInterface $connection, stdClass $user, string $channel): PromiseInterface;
Please login to merge, or discard this patch.