Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Room.php
  • Loading branch information
tiamo authored Jul 26, 2019
commit 719053dca7ba85fd7e69457c34231afde948c358
8 changes: 4 additions & 4 deletions src/Websocket/Facades/Room.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
use Illuminate\Support\Facades\Facade;

/**
* @method static this prepare()
* @method static this add($fd, $rooms)
* @method static this delete($fd, $rooms)
* @method static $this prepare()
* @method static $this add($fd, $rooms)
* @method static $this delete($fd, $rooms)
* @method static array getClients($room)
* @method static array getRooms($fd)
*
Expand All @@ -24,4 +24,4 @@ protected static function getFacadeAccessor()
{
return 'swoole.room';
}
}
}