Skip to content

Commit

Permalink
Enable serialization of connection
Browse files Browse the repository at this point in the history
  • Loading branch information
richt222 committed Oct 26, 2024
1 parent 6c83f67 commit 11bf33b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
namespace Laravel\Reverb;

use Laravel\Reverb\Concerns\GeneratesIdentifiers;
use Laravel\Reverb\Concerns\SerializesConnections;
use Laravel\Reverb\Contracts\Connection as ConnectionContract;
use Laravel\Reverb\Events\MessageSent;
use Ratchet\RFC6455\Messaging\Frame;

class Connection extends ConnectionContract
{
use GeneratesIdentifiers;
use GeneratesIdentifiers, SerializesConnections;

/**
* The normalized socket ID.
Expand Down

0 comments on commit 11bf33b

Please sign in to comment.