We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41be9cf commit 04d8e0cCopy full SHA for 04d8e0c
src/Exception/ConnectException.php
@@ -11,6 +11,8 @@
11
*/
12
namespace Hyperf\WebSocketClient\Exception;
13
14
-class ConnectException extends \RuntimeException
+use RuntimeException;
15
+
16
+class ConnectException extends RuntimeException
17
{
18
}
src/Frame.php
@@ -11,9 +11,10 @@
namespace Hyperf\WebSocketClient;
+use Stringable;
use Swoole\WebSocket\Frame as SwFrame;
-class Frame implements \Stringable
+class Frame implements Stringable
19
public bool $finish = true;
20
0 commit comments