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-07-25 16:18:13 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-08-08 11:24:49 +0300
commit041f5248e62db3041da5d767b6662d06ca8bdfea (patch)
tree75af3effbdae8a34e97f251deb68152a594999b3 /lib/PublicShareAuth
parente6678362b42ae367fd71d7f34b3d58ce2784ca02 (diff)
Use short class names
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/PublicShareAuth')
-rw-r--r--lib/PublicShareAuth/Listener.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/PublicShareAuth/Listener.php b/lib/PublicShareAuth/Listener.php
index 4428b7b7c..11d70905d 100644
--- a/lib/PublicShareAuth/Listener.php
+++ b/lib/PublicShareAuth/Listener.php
@@ -83,11 +83,11 @@ class Listener {
*
* This method should be called before a user joins a room.
*
- * @param \OCA\Spreed\Room $room
+ * @param Room $room
* @param string $userId
* @throws \OverflowException
*/
- public function preventExtraUsersFromJoining(\OCA\Spreed\Room $room, string $userId) {
+ public function preventExtraUsersFromJoining(Room $room, string $userId) {
if ($room->getObjectType() !== 'share:password') {
return;
}
@@ -111,10 +111,10 @@ class Listener {
*
* This method should be called before a guest joins a room.
*
- * @param \OCA\Spreed\Room $room
+ * @param Room $room
* @throws \OverflowException
*/
- public function preventExtraGuestsFromJoining(\OCA\Spreed\Room $room) {
+ public function preventExtraGuestsFromJoining(Room $room) {
if ($room->getObjectType() !== 'share:password') {
return;
}
@@ -136,9 +136,9 @@ class Listener {
* reason (no matter if the user or guest removed herself, was removed or
* timed out).
*
- * @param \OCA\Spreed\Room $room
+ * @param Room $room
*/
- public function destroyRoomOnParticipantLeave(\OCA\Spreed\Room $room) {
+ public function destroyRoomOnParticipantLeave(Room $room) {
if ($room->getObjectType() !== 'share:password') {
return;
}