Skip to content

Commit

Permalink
Remove final
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Feb 19, 2024
1 parent e783b7e commit 38146d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SimpleWebsocketClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
/**
* A simple alternative for communicating with websocket connections.
*/
final class SimpleWebsocketClient
class SimpleWebsocketClient
{
private string $stage;
private WebsocketClient $client;

public static function create(string $apiId, string $region, string $stage, int $timeout = 10): SimpleWebsocketClient
{
return new static(
return new self(
$apiId,
$region,
$stage,
Expand Down

0 comments on commit 38146d5

Please sign in to comment.