Skip to content

Commit 38146d5

Browse files
committed
Remove final
1 parent e783b7e commit 38146d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SimpleWebsocketClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
/**
1010
* A simple alternative for communicating with websocket connections.
1111
*/
12-
final class SimpleWebsocketClient
12+
class SimpleWebsocketClient
1313
{
1414
private string $stage;
1515
private WebsocketClient $client;
1616

1717
public static function create(string $apiId, string $region, string $stage, int $timeout = 10): SimpleWebsocketClient
1818
{
19-
return new static(
19+
return new self(
2020
$apiId,
2121
$region,
2222
$stage,

0 commit comments

Comments
 (0)